@import url(https://fonts.googleapis.com/css?family=Open+Sans);
@import 'https://fonts.googleapis.com/css?family=Lobster+Two';
@import url(normalize.css);
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}
.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #fff;
  border-radius: 4px;
  position: absolute;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -10px;
}
.hamburger-inner::after {
  bottom: -10px;
}
.hamburger--stand .hamburger-inner {
  transition: background-color 0s 0.1s linear, -webkit-transform 0.1s 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: transform 0.1s 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.1s linear;
  transition: transform 0.1s 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.1s linear, -webkit-transform 0.1s 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand .hamburger-inner::before {
  transition: top 0.1s 0.1s ease-in, -webkit-transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease-in, -webkit-transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand.is-active .hamburger-inner {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  background-color: transparent;
  transition: background-color 0s 0.22s linear, -webkit-transform 0.1s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.1s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.22s linear;
  transition: transform 0.1s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.22s linear, -webkit-transform 0.1s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: top 0.1s 0.12s ease-out, -webkit-transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: bottom 0.1s 0.12s ease-out, -webkit-transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cf {
  zoom: 1;
}
.cf:before,
.cf:after {
  content: " ";
  display: table;
}
.cf:after {
  clear: both;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  height: 100%;
}
body {
  background: #2a60ab url('../images/bg.jpg') fixed top center / cover no-repeat;
  color: #444;
  font: 16px 'Open Sans', sans-serif;
  padding-bottom: 90px;
}
#service .box-txt {
  background: url('../images/bg-service.png') center center;
}
#unserteam .box-txt {
  background: url('../images/bg-unser-team.png') center center;
}
#marken .box-txt {
  background: url('../images/bg-marken.png') center center;
}
#regionales .box-txt {
  background: url('../images/bg-regionales.png') center center;
}
#kontakt .box-txt {
  background: url('../images/bg-kontakt.png') center center;
}
a:link,
a:visited {
  color: #4177c1;
  text-decoration: underline;
}
a:focus,
a:active,
a:hover {
  color: #4177c1;
  text-decoration: none;
}
h1 {
  color: #4177c1;
  font-size: 24px;
  font-weight: bold;
  margin-top: 0;
}
h2 {
  font-size: 16px;
  font-weight: bold;
  margin: 25px 0 10px;
}
h2.marken {
  border-bottom: 1px dotted #5b4207;
  padding-bottom: 5px;
}
h4 {
  font-size: 16px;
  font-weight: bold;
  margin: 25px 0 10px;
}
.text-center {
  text-align: center;
}
.text-center img {
  margin: 0 auto;
}
.text-right {
  text-align: right;
}
.pull-left {
  float: left;
}
.pull-right {
  float: right;
}
.bold {
  font-weight: bold;
}
.vertical-align {
  display: flex;
  align-items: center;
}
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}
.cols span {
  display: inline-block;
  width: 70px;
}
.hamburger,
#navigation {
  position: absolute;
  right: 0;
}
.hamburger {
  color: #fff;
  outline: none;
  top: 10px;
}
#navigation {
  background: #fff url('../images/bg-kontakt.png');
  top: 100px;
  width: 100%;
  z-index: 100;
}
#navigation ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
#navigation a {
  display: block;
  padding: 10px 25px;
}
#navigation a:link,
#navigation a:visited {
  text-decoration: none;
}
#navigation a:active,
#navigation a:hover,
#navigation a.active {
  color: #fff;
  background: #4177c1;
  text-decoration: none;
}
.container {
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
}
#header {
  color: #fff;
  padding: 10px;
}
.logo a {
  outline: none;
}
.logo a img {
  display: block;
}
#home .header {
  height: 480px;
  padding-top: 10px;
}
.slogan {
  color: #fff;
  font: 36px 'Lobster Two', cursive;
  padding: 15px;
  text-align: center;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
}
.box-txt {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #4177c1;
  margin: 20px 10px 10px;
  padding: 15px;
}
.ribbon {
  margin: 0 auto;
}
#footer {
  color: #fff;
  padding: 15px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  background: #4177c1;
  background: -moz-linear-gradient(top, #4177c1 0%, #143768 100%);
  background: -webkit-linear-gradient(top, #4177c1 0%, #143768 100%);
  background: linear-gradient(to bottom, #4177c1 0%, #143768 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4177c1', endColorstr='#143768', GradientType=0);
}
#footer a:link,
#footer a:visited {
  color: #fff;
  text-decoration: none;
}
#footer a:focus,
#footer a:active,
#footer a:hover {
  color: #fff;
  text-decoration: underline;
}
#service {
  color: #825309;
}
.service {
  font-size: 24px;
  font-weight: bold;
}
.service div {
  height: 76px;
}
.lieferung {
  list-style-type: none;
}
.service,
.lieferung {
  margin-top: 20px;
}
.service img,
.lieferung img {
  float: left;
  margin: 0 15px 5px 0;
  vertical-align: middle;
}
#unserteam {
  color: #550a08;
}
.ot-foto {
  background: url('../images/cap.png') top center no-repeat;
  display: block;
  margin: 20px auto 0;
  height: 140px;
  width: 140px;
}
.ot-foto img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  margin: 10px;
  max-width: 120px;
}
.ot-name {
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
}
.ot-sign {
  min-height: 70px;
}
.ot-sign-1 {
  background: url('../images/sign-1.png') bottom center no-repeat;
}
.ot-sign-2 {
  background: url('../images/sign-2.png') bottom center no-repeat;
}
.ot-sign-3 {
  background: url('../images/sign-3.png') bottom center no-repeat;
}
.ot-sign-4 {
  background: url('../images/sign-4.png') bottom center no-repeat;
}
.ot-sign-5 {
  background: url('../images/sign-5.png') bottom center no-repeat;
}
.ot-position {
  margin-bottom: 30px;
}
.ot-name,
.ot-position {
  text-align: center;
}
#marken {
  color: #5b4207;
}
.marken .img-responsive {
  margin: 0 auto;
  padding: 10px;
}
select {
  background: #fff none;
}
select,
input[type="text"],
input[type="email"] {
  height: 34px;
}
select,
input[type="text"],
input[type="email"],
textarea {
  border: 1px solid #4177c1;
  font-size: 14px;
  line-height: 1.42857;
  margin-bottom: 8px;
  padding: 6px;
  width: 100%;
}
textarea {
  height: 229px;
  resize: vertical;
}
.g-map {
  border: 0;
  margin-top: 10px;
  width: 100%;
}
.recaptcha {
  margin-bottom: 10px;
}
.btn {
  background: #4177c1 none;
  border: 1px solid transparent;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857;
  margin-bottom: 0;
  padding: 6px 12px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}
.btn:hover {
  background-color: #fff;
  border-color: #4177c1;
  color: #4177c1;
}
.alert {
  border: 1px solid transparent;
  padding: 15px;
}
.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}
.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}
@media (min-width: 768px) {
  .col-left {
    float: left;
    width: 49%;
  }
  .col-right {
    float: right;
    width: 49%;
  }
  .box-txt {
    padding: 30px;
  }
  .col-4,
  .col-5,
  .col-6 {
    float: left;
  }
  .col-4,
  .col-5 {
    width: 50%;
  }
  .col-6 {
    width: 33.33333%;
  }
  .offset-regionales-1 {
    margin: 0 20%;
  }
  .offset-regionales-2 {
    margin: 0 22%;
  }
  .lieferung {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7 {
    float: left;
  }
  .col-3 {
    width: 33.33333%;
  }
  .col-4 {
    width: 25%;
  }
  .col-5 {
    width: 20%;
  }
  .col-6 {
    width: 16.66666%;
  }
  .col-7 {
    width: 14.28571%;
  }
  .offset-regionales-1 {
    margin: 0 16.66666%;
  }
  .offset-regionales-2 {
    margin: 0 28%;
  }
  .lieferung {
    font-size: 24px;
  }
}
