﻿/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
  background: #fff;
  color: #111;
  font-family: "Montserrat", Open Sans, sans-serif;
  font-size: 14px;
}

a {
  color: #7baaca;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #7baaca;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 15px 0;
}

.center {text-align:center}
@media (max-width: 1100px){
.center {margin-bottom: 20px;}
.center-mobile {text-align:center;}}
.border {border: 1px solid #ccc;}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  margin: 0 0 20px 0;
  padding: 0;
}

h1 {font-size: 28px;}
h2 {font-size:25px;}
h3 {font-size:24px;}

@media (max-width: 991px) {
h1 {font-size: 28px;}}

@media (max-width: 992px) {
img {max-width:100%;}}

/* Buttons / Pfeile */
.fa {color:#7baaca;}

.img-border {border:1px solid #f1f1f1;}

/* Back to top button */

.back-to-top {
  position: fixed;
  display: none;
  background: #7baaca;
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 65px;
  transition: background 0.5s;
  z-index: 11;
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}

/* Prelaoder */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #7baaca;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  padding: 30px 0;
  height: 92px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
}

#header.header-scrolled {
  background: rgba(0, 0, 0, 0.8);
  padding: 20px 0;
  height: 72px;
  transition: all 0.5s;
}

#header.header-scrolled img {max-width:80%;}

#header #logo {
  float: left;
}

#header #logo h1 {
  font-size: 34px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
}

#header #logo h1 a,
#header #logo h1 a:hover {
  color: #fff;
  padding-left: 10px;
  border-left: 4px solid #7baaca;
}

#header #logo img {
  padding: 0;
  margin: 0;
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

#intro {
  display: table;
  width: 100%;
  height: 100vh;
  background: #000;
}

#intro .carousel-item {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#intro .carousel-item::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#intro .carousel-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#intro .carousel-background img {
  max-width: 100%;
}

#intro .carousel-content {
  text-align: center;
}

#intro h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

#intro p {
  width: 100%;
  margin: 0 auto 30px auto;
  color: #fff;
}

#intro .carousel-fade {
  overflow: hidden;
}

#intro .carousel-fade .carousel-inner .carousel-item {
  transition-property: opacity;
}

#intro .carousel-fade .carousel-inner .carousel-item,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

#intro .carousel-fade .carousel-inner .active,
#intro .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left,
#intro .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}

#intro .carousel-fade .carousel-inner .carousel-item-next,
#intro .carousel-fade .carousel-inner .carousel-item-prev,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

#intro .carousel-control-prev,
#intro .carousel-control-next {
  width: 10%;
}

#intro .carousel-control-next-icon,
#intro .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

#intro .carousel-indicators li {
  cursor: pointer;
}

#intro .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #7baaca;
}

#intro .btn-get-started:hover {
  background: #fff;
  color: #7baaca;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Nav Menu Essentials */

.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
  border-radius: 15px;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Menu Arrows */

.sf-arrows .sf-with-ul {
  padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 15px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Meu Container */

#nav-menu-container {
  float: right;
  margin: 0;
}

/* Nav Meu Styling */

.nav-menu a {
  padding: 0 8px 10px 8px;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 15px;
  outline: none;
}


.nav-menu li:hover > a,
.nav-menu > .menu-active > a {
  color: #7baaca;
}

.nav-menu > li {
  margin-left: 10px;
}

.nav-menu ul {
  margin: 4px 0 0 0;
  padding: 10px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  background: #fff;
}

.nav-menu ul li {
  transition: 0.3s;
}

.nav-menu ul li a {
  padding: 10px;
  color: #333;
  transition: 0.3s;
  display: block;
  font-size: 13px;
  text-transform: none;
}

.nav-menu ul li:hover > a {
  color: #7baaca;
}

.nav-menu ul ul {
  margin: 0;
}

/* Mobile Nav Toggle */

#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 20px 20px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle i {
  color: #fff;
}

/* Mobile Nav Styling */

#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.8);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #fff;
  font-size: 14px;
  overflow: hidden;
  padding: 14px 22px 14px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}

#mobile-nav ul li a:hover {
  color: #7baaca;
}

#mobile-nav ul li li {
  padding-left: 25px;
}

#mobile-nav ul li.menu-active a {
  color: #7baaca;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #7baaca;
}

#mobile-nav ul .menu-has-children li a {
  text-transform: none;
}

#mobile-nav ul .menu-item-active {
  color: #7baaca;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  display: none;
}

/* Mobile Nav body classes */

body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

/* Sections Header
--------------------------------*/

.section-header h3 {
  font-size: 32px;
  color: #111;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.section-header h3::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-header h3::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #7baaca;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-header p {
  text-align: center;
  padding-bottom: 15px;
  color: #333;
}

/* Section with background
--------------------------------*/

.section-bg {
  background: #f7f7f7;
}

/* Info-Section
--------------------------------*/

#info-section {
  background: #111;
}

#info-section .box {
  padding: 30px 20px;
}

#info-section .box-bg {
 /* background-image: linear-gradient(0deg, #000000 0%, #242323 50%, #000000 100%);*/
}

#info-section i {
  color: #7baaca !important;
/*  font-size: 20px; */
  font-size:80px;
  display: inline-block;
  line-height: 1;
  text-align:center;
  display:block;
  float: left;
  line-height: 2;
  padding-top: 5px;
  padding-right: 20px
}



#info-section h4 {
  font-weight: 400;
  margin: 15px 0;
  font-size: 18px;
}

#info-section h4 a {
  color: #fff;
}

#info-section h4 a:hover {
  color: #7baaca;
}

#info-section p {
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  margin-bottom: 0;
}



/* Info-Section-Page
--------------------------------*/

#info-section-page {
  background: #111;
  height: 92px;
}

#info-section-page .box {
  padding: 30px 20px;
}

#info-section-page .box-bg {
 /* background-image: linear-gradient(0deg, #000000 0%, #242323 50%, #000000 100%);*/
}


#info-section-page i {
  color: #7baaca !important;
  font-size: 20px;
  display: inline-block;
  line-height: 1;
  text-align:center;
  display:block;
  float: left;
  line-height: 2;
  padding-top: 5px;
  padding-right: 20px
}




#info-section-page h4 {
  font-weight: 400;
  margin: 15px 0;
  font-size: 18px;
}

#info-section-page h4 a {
  color: #fff;
}

#info-section-page h4 a:hover {
  color: #7baaca;
}

#info-section-page p {
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  margin-bottom: 0;
}



/* Info-Section-Page YC
--------------------------------*/

#info-section-pageyc {
  background: #111;
  padding-top: 92px;
}

#info-section-pageyc .box {
  padding: 30px 20px;
}

#info-section-pageyc .box-bg {
 /* background-image: linear-gradient(0deg, #000000 0%, #242323 50%, #000000 100%);*/
}


#info-section-pageyc i {
  color: #7baaca !important;
  font-size: 20px;
  display: inline-block;
  line-height: 1;
  text-align:center;
  display:block;
  float: left;
  line-height: 2;
  padding-top: 5px;
  padding-right: 20px
}




#info-section-pageyc h4 {
  font-weight: 400;
  margin: 15px 0;
  font-size: 18px;
}

#info-section-pageyc h4 a {
  color: #fff;
}

#info-section-pageyc h4 a:hover {
  color: #7baaca;
}

#info-section-pageyc p {
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  margin-bottom: 0;
}




/* Indexbox
--------------------------------*/

#indexbox {
 /* background: url("../img/index/index-boxen.jpg") center top no-repeat fixed;*/
  background-size: cover;
  padding: 60px 0 40px 0;
  position: relative;
}

#indexbox::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.92);
  z-index: 9;
}

#indexbox .container {
  position: relative;
  z-index: 10;
}

#indexbox .indexbox-col {
  background: #fff;
  border-radius: 0 0 4px 4px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

#indexbox .indexbox-col .img {
  position: relative;
}

#indexbox .indexbox-col .img img {
  border-radius: 4px 4px 0 0;
}

#indexbox .indexbox-col .icon {
  width: 64px;
  height: 64px;
  padding-top: 8px;
  text-align: center;
  position: absolute;
  background-color: #7baaca;
  border-radius: 50%;
  text-align: center;
  border: 4px solid #fff;
  left: calc( 50% - 32px);
  bottom: -30px;
  transition: 0.3s;
}

#indexbox .indexbox-col i {
  font-size: 36px;
  line-height: 1;
  color: #fff;
  transition: 0.3s;
}

#indexbox .indexbox-col:hover .icon {
  background-color: #fff;
}

#indexbox .indexbox-col:hover i {
  color: #7baaca;
}

#indexbox .indexbox-col h2 {
  color: #000;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  padding: 0;
  margin: 40px 0 12px 0;
}

#indexbox .indexbox-col h2 a {
  color: #000;
}

#indexbox .indexbox-col h2 a:hover {
  color: #7baaca;
}

#indexbox .indexbox-col p {
  font-size: 14px;
  line-height: 24px;
  color: #333;
  margin-bottom: 0;
  padding: 0 20px 20px 20px;
}

#indexbox .section-header h2 {
  font-size: 32px;
  color: #111;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}



/* Auflistung Vorteile */

.vbox {
    list-style-type: none;
    padding-left: 0;
	}
	
.vbox .fa {color: #2b9233; font-size: 20px;}	
.vbox .fa-angle-double-right, .center .fa-angle-double-right {color: #fff; font-size: 20px;}	


.vbox li {
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #111;
    margin: 5px 0px;
}	

.vbox span {
margin-left: 25px;
display: block;
}

/* Webdesign
--------------------------------*/

#wdesignbox {
 /* background: url("../img/index/index-boxen.jpg") center top no-repeat fixed;*/
  background-size: cover;
  padding: 60px 0 40px 0;
  position: relative;
}

#wdesignbox::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.92);
  z-index: 9;
}

#wdesignbox .container {
  position: relative;
  z-index: 10;
}

#wdesignbox .wdesignbox-col {
  background: #fff;
  border-radius: 0 0 4px 4px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

#wdesignbox .wdesignbox-col .img {
  position: relative;
}

#wdesignbox .wdesignbox-col .img img {
  border-radius: 4px 4px 0 0;
}

#wdesignbox .wdesignbox-col .icon {
  width: 64px;
  height: 64px;
  padding-top: 8px;
  text-align: center;
  position: absolute;
  background-color: #7baaca;
  border-radius: 50%;
  text-align: center;
  border: 4px solid #fff;
  left: calc( 50% - 32px);
  bottom: -30px;
  transition: 0.3s;
}

#wdesignbox .wdesignbox-col i {
  font-size: 36px;
  line-height: 1;
  color: #fff;
  transition: 0.3s;
}

#wdesignbox h2 {
  font-size: 32px;
  color: #111;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px
}

#wdesignbox .wdesignbox-col:hover .icon {
  background-color: #fff;
}

#wdesignbox .wdesignbox-col:hover i {
  color: #7baaca;
}

#wdesignbox .wdesignbox-col h2 {
  color: #000;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  padding: 0;
  margin: 40px 0 12px 0;
}

#wdesignbox .wdesignbox-col h2 a {
  color: #000;
}

#wdesignbox .wdesignbox-col h2 a:hover {
  color: #7baaca;
}

#wdesignbox .wdesignbox-col p {
  font-size: 14px;
  line-height: 24px;
  color: #333;
  margin-bottom: 0;
  padding: 0 20px 20px 20px;
}


#wdesignbox .cta-btn {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
 /* margin-top: 10px;*/
  border: 2px solid #333;
  color: #333;
}

#wdesignbox .cta-btn:hover {
  background: #7baaca;
  border: 2px solid #7baaca;
}




/* PrestaShop Schnittstellen
--------------------------------*/

.ps-schnittstellen {visibility: visible;  animation-name: fadeIn;}



/* PrestaShop Galaxus
--------------------------------*/

.gvideo {}



/* Logistikschnittstelle
--------------------------------*/

#ls-box{
  background-size: cover;
  padding: 60px 0 40px 0;
  position: relative;
}

#ls-box::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.92);
  z-index: 9;
}

#ls-box .container {
  position: relative;
  z-index: 10;
}

#ls-box .ls-box-col {
  background: #fff;
  border-radius: 0 0 4px 4px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

#ls-box .ls-box-col .img {
  position: relative;
}

#ls-box .ls-box-col .img img {
  border-radius: 4px 4px 0 0;
}

#ls-box .ls-box-col .icon {
  width: 64px;
  height: 64px;
  padding-top: 8px;
  text-align: center;
  position: absolute;
  background-color: #7baaca;
  border-radius: 50%;
  text-align: center;
  border: 4px solid #fff;
  left: calc( 50% - 32px);
  bottom: -30px;
  transition: 0.3s;
}

#ls-box .ls-box-col i {
  font-size: 4em;
  line-height: 1;
  transition: 0.3s;
  color: #7baaca !important;
  padding-top: 20px;
  padding-left:10px;
  text-align:center;
  display:block;
}


#ls-box .ls-box-col:hover .icon {
  background-color: #fff;
}

#ls-box .ls-box-col:hover i {
  color: #7baaca;
}

#ls-box .ls-box-col h2 {
  color: #000;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  padding: 0;
  margin: 40px 0 12px 0;
}

#ls-box .ls-box-col h2 a {
  color: #000;
}

#ls-box .ls-box-col h2 a:hover {
  color: #7baaca;
}

#ls-box .ls-box-col p {
  font-size: 14px;
  line-height: 24px;
  color: #333;
  margin-bottom: 0;
  padding: 0 20px 20px 20px;
}


#ls-box .cta-btn {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
 /* margin-top: 10px;*/
  border: 2px solid #333;
  color: #333;
}

#ls-box .cta-btn:hover {
  background: #7baaca;
  border: 2px solid #7baaca;
}

#ls-box h2 {
  font-size: 32px;
  color: #111;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}


/* Onlineshop erstellen / PrestaShop Multishop
--------------------------------*/

#os-box{
  background-size: cover;
  padding: 60px 0 40px 0;
  position: relative;
}

#os-box::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.92);
  z-index: 9;
}

#os-box .container {
  position: relative;
  z-index: 10;
}

#os-box .os-box-col {
  background: #fff;
  border-radius: 0 0 4px 4px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

#os-box .os-box-col .img {
  position: relative;
}

#os-box .os-box-col .img img {
  border-radius: 4px 4px 0 0;
}

#os-box .os-box-col .icon {
  width: 64px;
  height: 64px;
  padding-top: 8px;
  text-align: center;
  position: absolute;
  background-color: #7baaca;
  border-radius: 50%;
  text-align: center;
  border: 4px solid #fff;
  left: calc( 50% - 32px);
  bottom: -30px;
  transition: 0.3s;
}

#os-box .os-box-col i {
  font-size: 4em;
  line-height: 1;
  transition: 0.3s;
  color: #7baaca !important;
  padding-top: 20px;
  padding-left:10px;
  text-align:center;
  display:block;
}

#os-box h3 {

	font-family: "Montserrat", sans-serif;
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
}

#os-box h2 {
  font-size: 32px;
  color: #111;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;	
}


#os-box .os-box-col:hover .icon {
  background-color: #fff;
}

#os-box .os-box-col:hover i {
  color: #7baaca;
}

#os-box .os-box-col h2 {
  color: #000;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  padding: 0;
  margin: 40px 0 12px 0;
}

#os-box .os-box-col h2 a {
  color: #000;
}

#os-box .os-box-col h2 a:hover {
  color: #7baaca;
}

#os-box .os-box-col p {
  font-size: 14px;
  line-height: 24px;
  color: #333;
  margin-bottom: 0;
  padding: 0 20px 20px 20px;
 text-align:center;
}


#os-box .cta-btn {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
 /* margin-top: 10px;*/
  border: 2px solid #333;
  color: #333;
}

#os-box .cta-btn:hover {
  background: #7baaca;
  border: 2px solid #7baaca;
}

#os-box .fa {

}





/* Onlineshop
--------------------------------*/

#onlineshop {
  background: url("../img/index/index-boxen.jpg") center top no-repeat fixed;
  background-size: cover;
  padding: 60px 0 40px 0;
  position: relative;
}

#onlineshop::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.92);
  z-index: 9;
}

#onlineshop .container {
  position: relative;
  z-index: 10;
}

#onlineshop .onlineshop-col {
  background: #fff;
  border-radius: 0 0 4px 4px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

#onlineshop .onlineshop-col .img {
  position: relative;
}

#onlineshop .onlineshop-col .img img {
  border-radius: 4px 4px 0 0;
  margin: 0 auto;
  display: block;
}

#onlineshop .onlineshop-col .icon {
  width: 64px;
  height: 64px;
  padding-top: 8px;
  text-align: center;
  position: absolute;
  background-color: #7baaca;
  border-radius: 50%;
  text-align: center;
  border: 4px solid #fff;
  left: calc( 50% - 32px);
  bottom: -30px;
  transition: 0.3s;
}

#onlineshop .onlineshop-col i {
  font-size: 36px;
  line-height: 1;
  color: #fff;
  transition: 0.3s;
}


#onlineshop .onlineshop-col:hover .icon {
  background-color: #fff;
}

#onlineshop .onlineshop-col:hover i {
  color: #7baaca;
}

#onlineshop .onlineshop-col h2 {
  color: #000;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  padding: 0;
  margin: 40px 0 12px 0;
}

#onlineshop .onlineshop-col h2 a {
  color: #000;
}

#onlineshop .onlineshop-col h2 a:hover {
  color: #7baaca;
}

#onlineshop .onlineshop-col p {
  font-size: 14px;
  line-height: 24px;
  color: #333;
  margin-bottom: 0;
  padding: 0 20px 20px 20px;
}


#onlineshop .cta-btn {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
 /* margin-top: 10px;*/
  border: 2px solid #333;
  color: #333;
}

#onlineshop .cta-btn:hover {
  background: #7baaca;
  border: 2px solid #7baaca;
}



/* Services Section
--------------------------------*/

#services {
  background: #fff;
  background-size: cover;
  padding: 60px 0 40px 0;
}

#services .box {
  margin-bottom: 30px;
}

#services .icon {
  float: left;
}

#services .icon i {
  color: #7baaca;
  font-size: 36px;
  line-height: 1;
  transition: 0.5s;
}

#services .title {
  margin-left: 60px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#services .title a {
  color: #111;
}

#services .box:hover .title a {
  color: #7baaca;
}

#services .description {
  font-size: 14px;
  margin-left: 60px;
  line-height: 24px;
  margin-bottom: 0;
}

/* Beratung
--------------------------------*/


#beratung {
  background: url("../img/pages/webdesign/webdesign-responsive.jpg") center top no-repeat fixed;
  background-size: cover;
  padding: 100px 0 100px 0;
  position: relative;
}

#beratung .section-header h3 {
  font-size: 32px;
  color: #fff;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

#beratung h2 {
  font-size: 32px;
  color: #fff;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

#beratung::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(84, 83, 83, 0.88);
  z-index: 9;
}

#beratung .container {
  position: relative;
  z-index: 10;
}


#beratung h3 {
  color: #333;
  font-size: 28px;
  font-weight: 700;
}

#beratung p {
  color: #fff;
}

#beratung .cta-btn {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#beratung .cta-btn:hover {
  background: #7baaca;
  border: 2px solid #7baaca;
}

/* Beratung
--------------------------------*/


/* News Index
--------------------------------*/



#news-index{
  background: url("../img/bg-news-index.jpg") center top no-repeat fixed;
  background-size: cover;
  padding: 100px 0 100px 0;
  position: relative;
}

#news-index .section-header h3 {
  font-size: 32px;
  color: #fff;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

#news-index h2 {
  font-size: 32px;
  color: #fff;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

#news-index::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(84, 83, 83, 0.88);
  z-index: 9;
}

#news-index .container {
  position: relative;
  z-index: 10;
}


#news-index h3 {
  color: #333;
  font-size: 28px;
  font-weight: 700;
}

#news-index p {
  color: #fff;
}

#news-index .cta-btn {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#news-index .cta-btn:hover {
  background: #7baaca;
  border: 2px solid #7baaca;
}

/* News Index
--------------------------------*/




/* Website erstellen
--------------------------------*/



#web{
  background: url("../img/pages/webdesign/webdesign-responsive.jpg") center top no-repeat fixed; 
  background-size: cover;
  padding: 100px 0 100px 0;
  position: relative;
}

#web .section-header h3 {
  font-size: 32px;
  color: #fff;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

#web h2 {
  font-size: 32px;
  color: #fff;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

#web::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(84, 83, 83, 0.88);
  z-index: 9;
}

#web .container {
  position: relative;
  z-index: 10;
}


#web h3 {
  color: #333;
  font-size: 28px;
  font-weight: 700;
}

#web p {
  color: #fff;
}

#web .cta-btn {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#web .cta-btn:hover {
  background: #7baaca;
  border: 2px solid #7baaca;
}

.web {}
.weblast {}
.fa-star:before, .fa-money:before {color: #7baaca; font-size:100px;}
.istyle {width:20%; float:right;}


/* Website erstellen
--------------------------------*/


#news {padding: 60px 0;}

#news img {max-width:100%; padding: 20px; margin-top:60px; border: 1px solid #f1f1f1;}

@media (max-width: 991px) {
#news img {max-width:100%; margin-top:20px; border: 1px solid #f1f1f1;}}


#news .section-header h2 {
  font-size: 32px;
  color: #111;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

#news .content {position: relative;}

#news .title {
border-bottom: 1px solid #e1e1e1;
margin-bottom:20px;
}

.newsdate {text-align: center; display: block; margin: 10px 0px;}
  
#news .title h3 {
padding-bottom:0;
margin-bottom: 10px;
font-size: 25px;
font-weight:bold;}

#news .content p {
   padding: 0;
  margin: 0 0 20px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  color: #111;}

#news .cta-btn {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #000;
}


/* Index Presta
--------------------------------*/

#indexpresta {
 /* background: url("../img/bg-prestashop.jpg") center top no-repeat fixed;*/
 background-color:#f7f7f7;
  background-size: cover;
  padding: 60px 0 0 0;
  position: relative;
}

#indexpresta::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
 /* background: rgba(255, 255, 255, 0.88);*/
  z-index: 9;
}

#indexpresta .container {
  position: relative;
  z-index: 10;
  padding-bottom:60px;
}

#indexpresta .counters span {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 48px;
  display: block;
  color: #7baaca;
}

#indexpresta .content p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #111;
}


#indexpresta .indexpresta-img {
  text-align: center;
  padding-top: 30px;
  padding-left:100px;
}

#indexpresta .cta-btn {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  /*margin-top: 10px;*/
  border: 2px solid #333;
  color: #333;
}

#indexpresta .section-header h2 {
  font-size: 32px;
  color: #111;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

#indexpresta .cta-btn:hover {
  background: #7baaca;
  border: 2px solid #7baaca;
}






/* MwSt Presta
--------------------------------*/

#prestaindex {
 background-color:#fff;
  background-size: cover;
  padding: 60px 0 0 0;
  position: relative;
}

#prestaindex-bggrey {
 background-color:#f7f7f7;
  background-size: cover;
  padding: 60px 0 0 0;
  position: relative;
}



/* MwSt Presta
--------------------------------*/

#mwstpresta {
 /* background: url("../img/bg-prestashop.jpg") center top no-repeat fixed;*/
 background-color:#fff;
  background-size: cover;
  padding: 60px 0 0 0;
  position: relative;
}

#mwstpresta::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
 /* background: rgba(255, 255, 255, 0.88);*/
  z-index: 9;
}

#mwstpresta .container {
  position: relative;
  z-index: 10;
  padding-bottom:60px;
}

#mwstpresta .counters span {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 48px;
  display: block;
  color: #7baaca;
}

#mwstpresta .content p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #111;
}


#mwstpresta .mwstpresta-img {
  text-align: center;
  padding-top: 30px;
  padding-left:100px;
}

#mwstpresta .cta-btn {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  /*margin-top: 10px;*/
  border: 2px solid #333;
  color: #333;
}

#mwstpresta .section-header h2 {
  font-size: 32px;
  color: #111;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

#mwstpresta .cta-btn:hover {
  background: #7baaca;
  border: 2px solid #7baaca;
}



#partner {
  background: url("../img/bg-post.jpg") center top no-repeat fixed;
  background-size: cover;
  padding: 60px 0 0 0;
  position: relative;
}

#partner .section-header h3 {
  font-size: 32px;
  color: #fff;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

#partner .section-header h2 {
  font-size: 32px;
  color: #fff;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

#partner .section-header p {
padding: 0;
    margin: 0 0 20px 0;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #fff
}

#partner::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(69, 68, 68, 0.88);
  z-index: 9;
}

#partner .container {
  position: relative;
  z-index: 10;
}

#partner .counters span {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 48px;
  display: block;
  color: #7baaca;
}

#partner .content p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #fff;
}

#partner .partner-img {
  text-align: center;
  padding-top: 30px;
}



#partner .cta-btn {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
 /* margin-top: 10px;*/
  border: 2px solid #fff;
  color: #fff;
}

#partner .cta-btn:hover {
  background: #7baaca;
  border: 2px solid #7baaca;
}


/* Webagentur */

#webagentur {
 background-color:#f7f7f7;
  background-size: cover;
  padding: 60px 0 0 0;
  position: relative;
}

#webagentur::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
 /* background: rgba(255, 255, 255, 0.88);*/
  z-index: 9;
}

#webagentur .container {
  position: relative;
  z-index: 10;
  padding-bottom:30px;
}

#webagentur h1, #webagentur h2, #webagentur h3 {
  color: #111;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px
}

#webagentur h1 {
  font-size: 32px;
}
#webagentur h3 {
  font-size: 24px;
}
#webagentur h2 {
  font-size: 28px;
  margin-top: 10px;
}


#webagentur .content p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #111;
}

#webagentur .webagentur-img {
  text-align: center;
  max-width:100%;
  border-radius:20px;
}

#webagentur .webagentur-img img {
  max-width:100%;
}

#webagentur .cta-btn {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  /*margin-top: 10px;*/
  border: 2px solid #333;
  color: #333;
}

#webagentur .cta-btn:hover {
  background: #7baaca;
  border: 2px solid #7baaca;
}


#webagentur-team {
 background-color:#fff;
  background-size: cover;
  padding: 60px 0 0 0;
  position: relative;
}



#webagentur-team .webagentur-img {
  text-align: center;
  max-width:100%;
  border-radius:20px;
}

#webagentur-team-infobox {
margin-top: 20px;
}

#webagentur-team h2 {
font-size: 32px;
color: #111;
text-align: center;
font-weight: 700;
position: relative;
padding-bottom: 15px;
}

.webagentur-about-box {
float:left;
}

.webagentur-about-box-shadow {
    padding: 3rem 1.25rem;
    position: relative;
    background-color: #fff;
    margin-bottom: 3rem;
    z-index: 2;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.06), 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

.webagentur-about-box-shadow .title-box {margin-bottom:2rem}

.webagentur-about-box-shadow .title {font-size: 20px; position: relative}
.webagentur-about-box-shadow .title::before {
content: '';
position: absolute;
height: 3px;
background-color: #7baaca;
width: 100px;
bottom: -12px;
}

.webagentur-about-box-shadow p {margin: 0 0 15px 0;}

.about-mf .about-img {
  margin-bottom: 2rem;
}

.about-mf .about-img img {
  margin-left: 10px;
}

.skill-mf span {
  color: #4e4e4e;
}

.skill-mf .progress {
  background-color: #cde1f8;
  margin: .5rem 0 1.2rem 0;
  border-radius: 0;
  height: .7rem;
}

.skill-mf .progress .progress-bar {
  height: .7rem;
  background-color: #0078ff;
}



/* Pages WordPress */

#wp {
 background-color:#fff;
  background-size: cover;
  padding: 60px 0 0 0;
  position: relative;
}

#wp::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
 /* background: rgba(255, 255, 255, 0.88);*/
  z-index: 9;
}

#wp .container {
  position: relative;
  z-index: 10;
  padding-bottom:30px;
}


#wp .content p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #111;
}

#wp h2 {
  font-size: 30px;
  color: #111;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

#modalpages h2 {
  font-size: 30px;
  color: #111;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

#wp .wp-img {
  max-width: 100%;
  padding: 0px 15px;
}

#wp .cta-btn {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  /*margin-top: 10px;*/
  border: 2px solid #333;
  color: #333;
}

#wp .cta-btn:hover {
  background: #7baaca;
  border: 2px solid #7baaca;
}

/* Pages Webdesign */

#wd {
 background-color:#fff;
  background-size: cover;
  padding: 60px 0 0 0;
  position: relative;
}

#wd::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
 /* background: rgba(255, 255, 255, 0.88);*/
  z-index: 9;
}

#wd .container {
  position: relative;
  z-index: 10;
  padding-bottom:30px;
}


#wd .content p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #111;
}

#wd h2 {
  font-size: 30px;
  color: #111;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px
}

#wd .wd-img {
  max-width: 100%;
}

#wd .cta-btn {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  /*margin-top: 10px;*/
  border: 2px solid #333;
  color: #333;
}

#wd .cta-btn:hover {
  background: #7baaca;
  border: 2px solid #7baaca;
}


/* Pages Presta */

#ps {
 background-color:#fff;
  background-size: cover;
  padding: 60px 0 0 0;
  position: relative;
}

#ps::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
 /* background: rgba(255, 255, 255, 0.88);*/
  z-index: 9;
}

#ps .container {
  position: relative;
  z-index: 10;
  padding-bottom:30px;
}


#ps .content p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #111;
}

#ps .ps-img {
  margin: 0 auto;
  display: block;
  max-width: 100%;
  border-radius: 20px;
}

@media (max-width: 992px) {
#ps .ps-img {display:block; margin:0 auto;
}}

#ps .cta-btn {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin: 10px 0px;
  color: #fff;
  background: #7baaca;}

#ps .cta-btn:hover {
}

#ps h1 {
  color: #111;
  text-align: center;
  font-weight: 700;
  position: relative;
}


#ps h2 {
  color: #111;
  text-align: center;
  font-weight: 500;
  position: relative;
  padding-bottom: 15px;
}

#ps h3 {
	font-family: "Montserrat", sans-serif;
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
	
	}


/* News-Seite */
#news h1 {text-align:center;}
#news h2 {text-align:left;}

#news .content {padding:15px;}

/* Pages Woo */

#woo {
 background-color:#fff;
  background-size: cover;
  padding: 60px 0 0 0;
  position: relative;
}

#woo::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
 /* background: rgba(255, 255, 255, 0.88);*/
  z-index: 9;
}

#woo .container {
  position: relative;
  z-index: 10;
  padding-bottom:30px;
}


#woo .content p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #111;
}

#woo h1 {
  font-size: 32px;
  color: #111;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}


#woo h2 {
  font-size: 30px;
  color: #111;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

#woo h3 {
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
}

#woo h4 {
    font-weight: 300;
    margin: 0 0 20px 0;
    padding: 0;
}

#woo .woo-img {
  max-width: 100%;
}

#woo .cta-btn {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  /*margin-top: 10px;*/
  border: 2px solid #333;
  color: #333;
}

#woo .cta-btn:hover {
  background: #7baaca;
  border: 2px solid #7baaca;
}


/* Pages Logistik */

#ls {
 background-color:#fff;
  background-size: cover;
  padding: 60px 0 0 0;
  position: relative;
}

#ls::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
 /* background: rgba(255, 255, 255, 0.88);*/
  z-index: 9;
}

#ls .container {
  position: relative;
  z-index: 10;
  padding-bottom:30px;
}

#ls h2 {
  font-size: 30px;
  color: #111;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 25px;
}


#ls .content p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #111;
}

#ls .ls-img {
  max-width: 100%;
}


#ls .video {
  max-width: 100%;
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%;
    height: 100%;
    background: url("https://media10.simplex.tv/content/54/55/38781/simvid_1.jpg");
    background-size:100%;
}

#ls .cta-btn {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  /*margin-top: 10px;*/
  border: 2px solid #333;
  color: #333;
}

#ls .cta-btn:hover {
  background: #7baaca;
  border: 2px solid #7baaca;
}


/* Zurück Button */

#back .cta-btn {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  /*margin-top: 10px;*/
  border: 2px solid #333;
  color: #333;
  margin-bottom:20px;
}

#back .cta-btn:hover {
  background: #7baaca;
  border: 2px solid #7baaca;
}

/* Pages HR */

.hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1)

}

/* Portfolio Section
--------------------------------*/

#portfolio {
  padding: 60px 0;
}

#portfolio #portfolio-flters {
  padding: 0;
  margin: 5px 0 35px 0;
  list-style: none;
  text-align: center;
}

#portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 15px 15px 15px 0;
  display: inline-block;
  padding: 10px 20px;
  font-size: 12px;
  line-height: 20px;
  color: #666666;
  border-radius: 4px;
  text-transform: uppercase;
  background: #fff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

#portfolio #portfolio-flters li:hover,
#portfolio #portfolio-flters li.filter-active {
  background: #7baaca;
  color: #fff;
}

#portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

#portfolio .portfolio-wrap {
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

#portfolio .portfolio-wrap:hover {
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
}

#portfolio .portfolio-item {
  position: relative;
  height: 360px;
  overflow: hidden;
}

#portfolio .portfolio-item figure {
  background: #000;
  overflow: hidden;
  height: 240px;
  position: relative;
  border-radius: 4px 4px 0 0;
  margin: 0;
}

#portfolio .portfolio-item figure:hover img {
  opacity: 0.4;
  transition: 0.3s;
}

#portfolio .portfolio-item figure .link-preview,
#portfolio .portfolio-item figure .link-details {
  position: absolute;
  display: inline-block;
  opacity: 0;
  line-height: 1;
  text-align: center;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  transition: 0.2s linear;
}

#portfolio .portfolio-item figure .link-preview i,
#portfolio .portfolio-item figure .link-details i {
  padding-top: 6px;
  font-size: 22px;
  color: #333;
}

#portfolio .portfolio-item figure .link-preview:hover,
#portfolio .portfolio-item figure .link-details:hover {
  background: #7baaca;
}

#portfolio .portfolio-item figure .link-preview:hover i,
#portfolio .portfolio-item figure .link-details:hover i {
  color: #fff;
}

#portfolio .portfolio-item figure .link-preview {
  left: calc(50% - 38px);
  top: calc(50% - 18px);
}

#portfolio .portfolio-item figure .link-details {
  right: calc(50% - 38px);
  top: calc(50% - 18px);
}

#portfolio .portfolio-item figure:hover .link-preview {
  opacity: 1;
  left: calc(50% - 44px);
}

#portfolio .portfolio-item figure:hover .link-details {
  opacity: 1;
  right: calc(50% - 44px);
}

#portfolio .portfolio-item .portfolio-info {
  background: #fff;
  text-align: center;
  padding: 30px;
  height: 90px;
  border-radius: 0 0 3px 3px;
}

#portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  line-height: 1px;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 0;
}

#portfolio .portfolio-item .portfolio-info h4 a {
  color: #333;
}

#portfolio .portfolio-item .portfolio-info h4 a:hover {
  color: #7baaca;
}

#portfolio .portfolio-item .portfolio-info p {
  padding: 0;
  margin: 0;
  color: #b8b8b8;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}

/* Clients Section
--------------------------------*/

#clients {
  padding: 60px 0;
}

#clients img {
  max-width: 100%;
  opacity: 0.5;
  transition: 0.3s;
  padding: 15px 0;
}

#clients img:hover {
  opacity: 1;
}

#clients .owl-nav,
#clients .owl-dots {
  margin-top: 5px;
  text-align: center;
}

#clients .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#clients .owl-dot.active {
  background-color: #7baaca;
}

#clients .section-header h2 {
  font-size: 30px;
  color: #111;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

#clients h2 {
  font-size: 30px;
  color: #111;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

/* Testimonials Section
--------------------------------*/

#testimonials {
  padding: 60px 0;
}

#testimonials .section-header {
  margin-bottom: 40px;
}

#testimonials .testimonial-item {
  text-align: center;
}

#testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

#testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

#testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 15px 0;
}

#testimonials .testimonial-item .quote-sign-left {
  margin-top: -15px;
  padding-right: 10px;
  display: inline-block;
  width: 37px;
}

#testimonials .testimonial-item .quote-sign-right {
  margin-bottom: -15px;
  padding-left: 10px;
  display: inline-block;
  max-width: 100%;
  width: 37px;
}

#testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

#testimonials .owl-nav,
#testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

#testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#testimonials .owl-dot.active {
  background-color: #7baaca;
}


/* Demos Section
--------------------------------*/

#demos {
  padding: 60px 0;
}

#demos .section-header {
  margin-bottom: 40px;
}

#demos .demo-item {
  text-align: center;
}

#demos .demo-item .demo-img {
  width: 250px;
  border-radius: 50%;
  border: 1px solid #e1e1e1;
  margin: 0 auto;
}

#demos .demo-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

#demos h2 {
  font-size: 30px;
  color: #111;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

#demos .demo-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 15px 0;
}

#demos .demo-item .quote-sign-left {
  margin-top: -15px;
  padding-right: 10px;
  display: inline-block;
  width: 37px;
}

#demos .demo-item .quote-sign-right {
  margin-bottom: -15px;
  padding-left: 10px;
  display: inline-block;
  max-width: 100%;
  width: 37px;
}

#demos .demo-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

#demos .owl-nav,
#demos .owl-dots {
  margin-top: 5px;
  text-align: center;
}

#demos .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#demos .owl-dot.active {
  background-color: #7baaca;
}


/* Logistik */

#ls-header {
background-image: url("../img/pages/logistikschnittstelle/yellowcube-1500-927.jpg");
border:0;
width:100%;
background-position:center center;
background-repeat:no-repeat;
background-size: cover;
height:1000px;
}

.overlay {
    background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
    width: 100%;
    height: 100%

}

.ls-header-container {
	margin-top: auto !important;
    padding-top: 300px;

}

#ls-header .header-content {
  text-align: center;
}

#ls-header .section-header h2 {
  font-size: 30px;
  color: #111;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}


#ls-header .section-header h1 {
  font-size: 60px;
  color: #fff;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
  padding-top:150px;
}
#ls-header h3 {
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
}

#ls-header p {
  width: 80%;
  margin: 0 auto 30px auto;
  color: #fff;
  font-size:25px;
}

/* Kontakt */

#kontakt {
  padding: 60px 0;
}

#kontakt .section-header h3 {
  font-size: 32px;
  color: #111;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
  padding-top:15px;
}



#kontakt .content p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #111;
}

#kontakt .kontakt-img {
  text-align: center;
  padding-top: 30px;
  padding-left:100px;
}

#kontakt .cta-btn {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  /*margin-top: 10px;*/
  border: 2px solid #333;
  color: #333;
}

#kontakt .cta-btn:hover {
  background: #7baaca;
  border: 2px solid #7baaca;
}

#kontakt h2 {
  font-size: 30px;
  color: #111;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}



/* Kontakt */




/* Bilder Pages*/


#modalpages {
  background: #fff;
  padding: 60px 0;
}



/* Modal Image */

 .row > .column {
  padding: 0 8px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Create four equal columns that floats next to eachother */
.column {
  float: left;
  width: 25%;
}

/* The Modal (background) */

.myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  max-width: 100%;
  border: 1px solid #ccc;
  padding: 5px;
}


#myImg:hover {opacity: 0.7;}


/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1000; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
  margin: auto;
  display: block;
  width: 100%;
  max-width: 1140px;
}

/* Caption of Modal Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation */
.modal-content, #caption {  
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {-webkit-transform:scale(0)} 
  to {-webkit-transform:scale(1)}
}

@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}

/* The Close Button */
.close {
  position: absolute;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
}


/* Stop Modal */



/* Team Section
--------------------------------*/

#team {
  background: #fff;
  padding: 60px 0;
}

#team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #000;
  position: relative;
}

#team .member .member-info {
  opacity: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

#team .member .member-info-content {
  margin-top: -50px;
  transition: margin 0.2s;
}

#team .member:hover .member-info {
  background: rgba(0, 0, 0, 0.7);
  opacity: 1;
  transition: 0.4s;
}

#team .member:hover .member-info-content {
  margin-top: 0;
  transition: margin 0.4s;
}

#team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

#team h2 {
  font-size: 30px;
  color: #111;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px
}

#team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

#team .member-p {
  font-style: italic;
  display: block;
  font-size: 12px;
  color: #fff;
}

#team .member .social {
  margin-top: 15px;
}

#team .member .social a {
  transition: none;
  color: #fff;
}

#team .member .social a:hover {
  color: #7baaca;
}

#team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}


/* onlineshop Section
--------------------------------*/

#onlineshop {
  background: #fff;
  padding: 60px 0;
}

#onlineshop .member {
  text-align: center;
  margin-bottom: 20px;
  background: #000;
  position: relative;
}

#onlineshop .member .member-info {
  opacity: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

#onlineshop .member .member-info-content {
  margin-top: -50px;
  transition: margin 0.2s;
}

#onlineshop .member:hover .member-info {
  background: rgba(0, 0, 0, 0.7);
  opacity: 1;
  transition: 0.4s;
}

#onlineshop .member:hover .member-info-content {
  margin-top: 0;
  transition: margin 0.4s;
}

#onlineshop .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

#onlineshop .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

#onlineshop .member-p {
  font-style: italic;
  display: block;
  font-size: 12px;
  color: #fff;
}

#onlineshop .member .social {
  margin-top: 15px;
}

#onlineshop .member .social a {
  transition: none;
  color: #fff;
}

#onlineshop .member .social a:hover {
  color: #7baaca;
}

#onlineshop .member .social i {
  font-size: 18px;
  margin: 0 2px;
}



/* Website - Webdesign erstellen
--------------------------------*/

.website-beratung .cta-btn {
font-family: "Montserrat", sans-serif;
text-transform: uppercase;
font-weight: 500;
font-size: 16px;
letter-spacing: 1px;
display: inline-block;
padding: 8px 28px;
border-radius: 25px;
transition: 0.5s;
margin-top: 10px;
border: 2px solid #fff;
color: #fff;
}




/*--------------------------------------------------------------

# Partner

--------------------------------------------------------------*/

.partner-img {margin-top: 50px; margin:0 auto; display:block; padding-top:40px;}
.btn-partner {text-align:center; display:block;}

/* ================================
Kontakt Box Section
================================= */
#bottom-widget {
  overflow: hidden;
  color:#fff;
  padding-top:20px;
}
ul.social-network {
	margin: 0;
	margin-left:0;
	padding-left: 0;
	list-style: none;
}
ul.social-network li {
	display: inline;
	margin: 5px 5px;
}


ul.social-network li a:hover span .fa-circle {
	color: #2b2b2b;
}

ul.social-network li a i{
  transition: 0.3s
}

.section-contact-widget {
  text-align:center;
  padding-top:10px;
  font-size:16px;
}

.section-contact-widget i {
  color: #7baaca;
}

.galaxus-contact-widget .fa-4x {
  font-size: 4em;
}

.galaxus-logo {  display:flex;  justify-content:center;  align-items:center;}
.partner-logo {  display:flex;  justify-content:center;  align-items:center;}

@media (max-width: 991px) {
.partner-logo {margin: 50px 0px 20px 0px;}}

/* Contact Section
--------------------------------*/

#contact {
  padding: 60px 0;
}

#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}

#contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #7baaca;
}

#contact .contact-info address,
#contact .contact-info p {
  margin-bottom: 0;
  color: #000;
}

#contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #999;
}

#contact .contact-info a {
  color: #000;
}

#contact .contact-info a:hover {
  color: #7baaca;
}

#contact .contact-address,
#contact .contact-phone,
#contact .contact-email {
  margin-bottom: 20px;
}

#contact .form #sendmessage {
  color: #7baaca;
  border: 1px solid #7baaca;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #sendmessage.show,
#contact .form #errormessage.show,
#contact .form .show {
  display: block;
}

#contact .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

#contact .form input,
#contact .form textarea {
  padding: 10px 14px;
  border-radius: 0;
  box-shadow: none;
  font-size: 15px;
}

#contact .form button[type=submit] {
  background: #7baaca;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  cursor: pointer;
}

#contact .form button[type=submit]:hover {
  background: #13a456;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  background: #000;
  padding: 0 0 30px 0;
  color: #eee;
  font-size: 14px;
}

#footer .footer-top {
  background: #111;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 30px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 10px;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  border-left: 4px solid #7baaca;
}

@media (min-width: 993px) {
#footer .footer-top .footer-info h3 {
font-size:25px}}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  color: #eee;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #eee;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #7baaca;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top h4::before,
#footer .footer-top h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
}

#footer .footer-top h4::before {
  right: 0;
  background: #555;
}

#footer .footer-top h4::after {
  background: #7baaca;
  width: 60px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 8px;
  color: #ddd;
}

#footer .footer-top .footer-links ul li {
  border-bottom: 1px solid #333;
  padding: 10px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #eee;
}

#footer .footer-top .footer-links ul a:hover {
  color: #7baaca;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type=email] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
}

#footer .footer-top .footer-newsletter input[type=submit] {
  background: #7baaca;
  border: 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type=submit]:hover {
  background: #13a456;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #ddd;
}

/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/

@media (min-width: 768px) {
  #contact .contact-address,
  #contact .contact-phone,
  #contact .contact-email {
    padding: 20px 0;
  }

  #contact .contact-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
}

@media (min-width: 992px) {
  #testimonials .testimonial-item p {
    width: 80%;
  }
}

@media (min-width: 1024px) {
  #header #logo {
    padding-left: 60px;
  }

  #intro p {
    width: 100%;
  }

  #intro .carousel-control-prev,
  #intro .carousel-control-next {
    width: 5%;
  }

  #nav-menu-container {
    padding-right: 60px;
  }
}

@media (max-width: 1100px) {
  .back-to-top {
    bottom: 15px;
  }

  #header #logo h1 {
    font-size: 28px;
  }

  #header #logo img {
    max-height: 40px;
  }

  #intro h2 {
    font-size: 28px;
  }

  #nav-menu-container {
    display: none;
  }

  #mobile-nav-toggle {
    display: inline;
  }
  
  #indexpresta .indexpresta-img {
  text-align: center;
  max-width:100%;
  padding: 20px;
}

#partner .partner-img {
  text-align: center;
  max-width:100%;
  padding: 20px;
}

#info-section-page .box {

display:none;}


#info-section {

display:none;}

#ps h3 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
	text-align:center;
	font-size: 22px;
    color: #111;
	padding-top: 20px;
	}


#woo h3 {
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
	text-align:center;
	font-size: 22px;
    color: #111;
	padding-top: 20px;
	
	}

#woo h4 {
    font-weight: 300;
    margin: 0 0 20px 0;
    padding: 0;
	text-align:center;
	font-size: 20px;
    color: #111;
	padding-top: 20px;
}

#info-section-pageyc {display:none;}


#webagentur .webagentur-img {

  text-align: center;
  max-width:100%;
  padding: 20px;
}


.webagentur-about-box-shadow .webagentur-img {width:100%;}

#ls-header .section-header h1 {
    font-size: 45px;
}

#ls-header {height:500px;}


#ps h2, #intro h2, #indexbox .section-header h2, #wdesignbox h2, #ls-box h2, #os-box h2, #beratung h2, #news .section-header h2,
	#indexpresta .section-header h2,
	#partner .section-header h2,
	#webagentur h2,
	#wp h2,
	#wd h2,
	#ps h2,
	#woo h2,
	#ls h2,
	#clients .section-header h2 ,
	#clients h2,
	#demos h2,
	#ls-header .section-header h2, 
	#kontakt h2, 
	#team h2 ,
	#modalpages h2  {font-size:25px;}
}

/* Mobile Bilder zentrieren */
@media (max-width: 768px) {
.img img {margin:0 auto; display:block;}}

/* Fix */
@media (max-width: 1200px) {
.nav-menu a {
font-size:14px;
padding: 0 2px 10px 2px;}
.nav-menu > li {margin-left: 8px;}
.sf-arrows .sf-with-ul {padding-right: 24px;}
}


@media (max-width: 768px) {
  .fa-star:before, .fa-money:before{
    font-size: 70px;}
  }

@media (max-width: 768px) {
  .web {
    padding-top: 20px;
	padding-bottom: 30px;
	border-bottom: 1px solid #f1f1f1;}
  }
  
 @media (max-width: 768px) {
  .weblast {
    padding-top: 20px;
	padding-bottom: 30px;
	}
  }
 
 @media (max-width: 768px) {
 #wp .wp-img {
  max-width: 100%;
  padding-bottom: 30px;
}
}

/* Spacer */

.spacer {height:50px;}


/* Site Upgrade */

.iupgrade {font-size: 250px; color: #7baaca; text-align: center; display: block}

/* Cookie */

.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    color: #ecf0f1;
    background: #212327 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASwAAAEECAIAAAAd4J55AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OUIyQzg0Q0RDQ0ExMTFFNjkyMDJGQkMzNjQ3OUEyMTQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OUIyQzg0Q0VDQ0ExMTFFNjkyMDJGQkMzNjQ3OUEyMTQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo5QjJDODRDQkNDQTExMUU2OTIwMkZCQzM2NDc5QTIxNCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo5QjJDODRDQ0NDQTExMUU2OTIwMkZCQzM2NDc5QTIxNCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PnMLhJsAAB3qSURBVHja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');
}

.cookiealert.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
    transition-delay: 1000ms;
}

.cookiealert a {
    text-decoration: underline
}

.cookiealert .acceptcookies {
    margin-left: 10px;
    vertical-align: baseline;
}

/* Stop Cookie */

/* btn modulseite */

.btn-lizenz {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff !important;
  background: #7baaca;

}
.modul a:hover {color:#fff;}

/* stop btn modulseite */



/* Changelog */

#accordion span.accordion {font-size:12px;}


