header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  padding: 50px 0 10px 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  background: #fff;
}

header nav {
  position: absolute;
  right: 0;
  bottom: 10px;
  z-index: 100;
}

header nav .logo {
  display: none;
  width: 70%;
  margin: 0 auto;
}

header nav li {
  float: left;
}

header nav li a {
  padding: 10px 20px;
}

header nav li.active a {
  color: var(--red);
  font-weight: 600;
}

header nav li.back_to_home {
  display: none;
}

header a.logo {
  width: 110px;
  height: 60px;
  /*<ie11*/
  background: #fff;
  display: inline-block;
  -webkit-transform: translate(82px, 90%) scale(2.5);
          transform: translate(82px, 90%) scale(2.5);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-box-shadow: 0 2px 4px -3px #000;
          box-shadow: 0 2px 4px -3px #000;
}

header .menu-toggle {
  display: none;
  position: absolute;
  z-index: 101;
  bottom: 10px;
  right: 0;
  height: 35px;
  width: 30px;
}

header .menu-toggle span {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--dark-blue);
  border-radius: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

header .menu-toggle span.one {
  top: 0;
}

header .menu-toggle span.two {
  top: 10px;
}

header .menu-toggle span.three {
  top: 20px;
}

header .menu-toggle.crossed span.one {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 10px;
}

header .menu-toggle.crossed span.two {
  opacity: 0;
}

header .menu-toggle.crossed span.three {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 10px;
}

@media screen and (max-width: 1200px) {
  header a.menu-toggle {
    display: inline-block;
  }
  header a.logo {
    -webkit-transform: translate(30px, 90%) scale(1.5);
            transform: translate(30px, 90%) scale(1.5);
  }
  header nav {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 300px;
    background: #fff;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: 0.2s -webkit-transform;
    transition: 0.2s -webkit-transform;
    transition: 0.2s transform;
    transition: 0.2s transform, 0.2s -webkit-transform;
    text-align: center;
  }
  header nav ul {
    padding-top: 30px;
  }
  header nav ul li {
    float: none;
    display: block;
    text-align: right;
  }
  header nav ul li a {
    padding: 10px 45px 20px 10px;
  }
}

@media screen and (max-width: 1200px) and (max-height: 600px) {
  header nav ul li a {
    padding: 10px 45px 10px 0px;
  }
}

@media screen and (max-width: 1200px) and (max-height: 400px) {
  header nav ul li a {
    padding: 5px 45px 5px 0px;
  }
}

@media screen and (max-width: 1200px) {
  header nav.open {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-box-shadow: 0 0 7px -5px #000;
            box-shadow: 0 0 7px -5px #000;
  }
  header nav.open .logo {
    display: inline-block;
    padding-top: 20px;
  }
}

header.slim {
  padding: 10px 0;
  -webkit-box-shadow: 0 0 5px -3px #000;
          box-shadow: 0 0 5px -3px #000;
}

header.slim a.logo {
  -webkit-transform: translate(0, 4px);
          transform: translate(0, 4px);
  -webkit-box-shadow: none;
          box-shadow: none;
}

footer {
  padding-top: 50px;
  color: var(--dark-blue);
  position: relative;
}

footer .logo {
  width: 190px;
  height: 100px;
}

footer .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-content: space-between;
}

footer .bottom {
  text-align: center;
  background: var(--dark-blue);
  color: #fff;
  padding: 5px 0;
  margin-top: 20px;
}

footer nav {
  text-align: right;
}

footer nav a {
  padding: 8px 20px;
  color: var(--dark-blue);
}

footer .dots {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

footer .dots .dot {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  margin: 0 20px;
}

footer .dots .dot.elektro {
  background: var(--red);
  border: 5px solid var(--red);
}

footer .dots .dot.sanitaer {
  background: var(--dark-blue);
  border: 5px solid var(--dark-blue);
}

footer .dots .dot.heizung {
  background: var(--dark-blue);
  border: 5px solid var(--red);
}

footer .dots .dot.rohr {
  background: #fff;
  border: 5px solid var(--dark-blue);
}

@media screen and (max-width: 1000px) {
  footer .dots {
    display: none;
  }
}

#cookie-info {
  position: fixed;
  bottom: 10px;
  left: 10px;
  right: 10px;
  padding: 20px;
  z-index: 100;
  background: #fff;
  -webkit-box-shadow: 0 0 5px -3px #000;
          box-shadow: 0 0 5px -3px #000;
}

#cookie-info .text {
  width: calc(100% - 50px);
}

#cookie-info a.dismiss {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#aside {
  position: fixed;
  bottom: 30px;
  left: 0;
  z-index: 99;
  color: #fff;
  text-align: right;
  width: 220px;
  font-size: 16px;
}

#aside .elem {
  width: 100%;
  padding: 20px;
  margin-bottom: 5px;
}

#aside .notdienst {
  background: red;
  background: var(--red);
  padding: 20px 20px 20px 80px;
}

@media screen and (max-height: 460px) {
  #aside .notdienst {
    display: none;
  }
}

#aside .kontakt {
  background: #2F4858;
  background: var(--dark-blue);
}

@media screen and (max-height: 550px) {
  #aside .kontakt {
    display: none;
  }
}

#aside .ausschreibungen {
  background: var(--gray);
}

#aside h2 {
  font-size: 18px;
}

#aside img {
  width: 45px;
  position: absolute;
  top: 0;
  left: -60px;
}

#aside a {
  padding: 0;
}

@media screen and (max-width: 1200px) {
  #aside {
    width: 100%;
    text-align: center;
    bottom: 0;
  }
  #aside h2 {
    font-size: 15px;
  }
  #aside img {
    width: 35px;
    left: -40px;
  }
  #aside .elem {
    margin-bottom: 0;
  }
  #aside .ausschreibungen {
    display: none;
  }
  #aside .kontakt {
    background: var(--light-gray);
    color: var(--gray);
  }
}

html {
  font-family: "Raleway";
  font-size: 18px;
  color: var(--dark-blue);
}

@media screen and (max-width: 1200px) {
  html {
    font-size: 16px;
  }
}

main {
  min-height: 80vh;
}

main.single {
  padding-top: 250px;
  padding-bottom: 80px;
  background: var(--light-gray);
}

@media screen and (max-width: 1200px) {
  main.single {
    padding-top: 200px;
  }
}

.blurred {
  -webkit-filter: blur(2px);
          filter: blur(2px);
}

.glide__track, .glide__slides {
  height: 100%;
}

.glide__arrows button {
  width: 30px;
  height: 30px;
  padding: 5px;
  border-radius: 15px;
}

.glide__arrows button img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.7;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
}

.glide__arrows button.glide__arrow--left img {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.glide__arrows button:hover img {
  opacity: 1;
}

#slider {
  height: 100vh;
}

#slider a {
  color: #fff;
}

#slider img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#slider .content {
  padding: 20px;
  position: absolute;
  top: 200px;
  bottom: 0;
  left: 0;
  right: 0;
  color: #fff;
}

#slider .content .container {
  height: 100%;
}

#slider .content .elem {
  opacity: 0;
  max-width: 100%;
  text-align: right;
  position: relative;
}

#slider .content .elem .inner {
  display: inline-block;
  text-align: left;
  padding: 20px;
  max-width: 100%;
}

#slider .content .elem.title {
  position: relative;
  z-index: 2;
  margin-bottom: -15px;
}

#slider .content .elem.title .inner {
  background: red;
  background: var(--red);
  width: 520px;
}

#slider .content .elem.text .inner {
  padding: 20px 20px 40px 20px;
  width: 600px;
  overflow: hidden;
  background: #2F4858;
  background: var(--dark-blue);
}

@media screen and (max-height: 800px) {
  #slider {
    height: auto;
  }
}

.section-title {
  background: #fff;
  padding: 70px 0;
  color: var(--dark-blue);
  text-transform: uppercase;
}

@media screen and (max-width: 1200px) {
  .section-title {
    padding: 40px 0;
  }
}

form {
  position: relative;
}

form .success {
  padding: 10px 0;
  margin-top: 50px;
  background: url("../img/checkmark.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--light-gray);
  z-index: 1;
}

form .info {
  padding: 20px 35px 20px 35px;
  background: var(--dark-blue);
  color: #fff;
  margin: 5px 0;
  position: relative;
  display: none;
}

form .info::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("../img/info.png");
  background-position: center;
  background-size: cover;
}

form .info::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("../img/cross.png");
  background-position: center;
  background-size: cover;
}

form .info:hover {
  cursor: pointer;
}

form button[type="submit"] {
  position: relative;
  background: var(--dark-blue);
  color: #fff;
  padding: 15px 20px;
  border: none;
}

form button[type="submit"]::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("../img/loading.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 20px;
  border-top: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation-name: rotate;
          animation-name: rotate;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  display: none;
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes rotate {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}

form.loading button[type="submit"] {
  color: transparent !important;
}

form.loading button[type="submit"]::before {
  display: block;
}

#leistungen {
  background: var(--light-gray);
}

#leistungen .leistung {
  overflow: hidden;
}

#leistungen .leistung img {
  -webkit-transition: 2s -webkit-transform;
  transition: 2s -webkit-transform;
  transition: 2s transform;
  transition: 2s transform, 2s -webkit-transform;
  height: 600px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 960px) {
  #leistungen .leistung img {
    height: 300px;
  }
}

#leistungen .leistung img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

#leistungen .leistung .desc {
  background: red;
  background: var(--red);
  color: #fff;
  color: var(--light-gray);
  padding: 20px;
  position: relative;
  text-align: right;
  padding-top: 50px;
}

#leistungen .leistung .desc .type {
  position: absolute;
  top: 0;
  left: 0;
  padding: 20px;
  -webkit-transform: translateY(calc(-100% + 20px)) translateX(20px);
          transform: translateY(calc(-100% + 20px)) translateX(20px);
  background: #fff;
  text-transform: uppercase;
  color: #2F4858;
  color: var(--dark-blue);
}

#leistungen .leistung .desc .type .dot {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 10px;
}

#leistungen .leistung .desc .type .dot.elektro {
  background: red;
  background: var(--red);
  border: 5px solid var(--red);
}

#leistungen .leistung .desc .type .dot.sanitaer {
  background: blue;
  background: var(--dark-blue);
  border: 5px solid var(--dark-blue);
}

#leistungen .leistung .desc .type .dot.heizung {
  background: var(--dark-blue);
  border: 5px solid var(--red);
}

#leistungen .leistung .desc .type .dot.rohr {
  background: #fff;
  border: 5px solid var(--dark-blue);
}

#leistungen .leistung .desc::after {
  position: absolute;
  top: -20px;
  right: 0;
  width: 200px;
  height: 40px;
  max-width: 100%;
  background: red;
  background: var(--red);
  content: "";
  display: block;
}

@media screen and (max-width: 500px) {
  #leistungen .leistung .desc::after {
    display: none;
  }
}

#leistungen .leistung:nth-child(2n) .desc {
  background: red;
  background: var(--red);
  text-align: left;
}

#leistungen .leistung:nth-child(2n) .desc .type {
  right: 0;
  left: auto;
  -webkit-transform: translateY(calc(-100% + 20px)) translateX(-20px);
          transform: translateY(calc(-100% + 20px)) translateX(-20px);
}

#leistungen .leistung:nth-child(2n) .desc::after {
  left: 0;
  right: auto;
}

#partner {
  background: #fff;
  padding: 50px 0;
}

#partner img {
  width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 10px;
}

#partner .flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 1200px) {
  #partner .flex {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #partner img {
    width: 25%;
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
}

@media screen and (max-width: 450px) {
  #partner img {
    -webkit-transform: none;
            transform: none;
  }
}

#kontakt {
  background: lightgray;
  background: var(--light-gray);
  padding-bottom: 80px;
}

#kontakt .section-title {
  padding: 40px 0 30px 0;
  background: #2F4858;
  background: var(--dark-blue);
  color: #fff;
  position: relative;
}

#kontakt .section-title h2 {
  padding: 10px 0;
}

#kontakt .section-title::after {
  position: absolute;
  background: #fff;
  top: 0;
  bottom: 35px;
  left: 50%;
  width: 50%;
  content: "";
}

#kontakt .section-title::before {
  position: absolute;
  background: var(--light-gray);
  top: calc(100% - 35px);
  bottom: 0;
  left: 50%;
  width: 50%;
  content: "";
}

#kontakt form {
  padding: 50px 0;
}

#kontakt input, #kontakt textarea {
  width: 100%;
  padding: 15px;
  border: none;
  margin-bottom: 5px;
}

#kontakt button[type="submit"] {
  float: right;
}

#kontakt textarea {
  resize: vertical;
  height: 250px;
}

@media screen and (max-width: 960px) {
  #kontakt {
    padding-bottom: 0;
  }
  #kontakt .section-title::after,
  #kontakt .section-title::before {
    display: none;
  }
}

#map iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
}
/*# sourceMappingURL=style.css.map */