* {
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

form .website {
  display: none !important; }

/* Variables */
:root {
  --color-blue-1: #008bd2;
  --color-blue-2: #00486e;
  --color-white-2: #fff;
  --color-green: #3ba432;
  --color-white: #fff;
  --color-text: #2c2d2f; }

body, html {
  margin: 0;
  padding: 0;
  font-family: 'Helvetica', sans-serif;
  font-size: 16px;
  height: 100vh;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent; }

#top {
  opacity: 0;
  width: 0;
  height: 0; }

.anchor, #anchor-form {
  opacity: 0;
  font-size: 0;
  position: absolute;
  top: -15%; }

.to-contact {
	cursor: pointer;
  	transition: 0.2s ease;
}
.to-contact:hover{
	color: #035a87;
}

.mail-sent {
  position: fixed;
  z-index: 9999999999;
  font-size: 27px;
  padding: 40px;
  background-color: #fff;
  box-shadow: 6px 1px 21px -10px #8c8c8c;
  top: 170px;
  left: 50%;
  transform: translateX(-50%);
  animation: fadeIn 0.2s ease; }

.wrapper {
  position: relative;
  display: block;
  max-width: 1200px;
  margin: 0 auto; }
  .wrapper .mailing {
    position: fixed;
    right: 35px;
    top: 30%;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    background-color: #fff;
    box-shadow: 1px 2px 16px -8px #505050;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    cursor: pointer;
    z-index: 999;
    border: 2px solid transparent; }
    .wrapper .mailing a {
      font-size: 0;
      width: 100%;
      height: 100%;
      z-index: 9999; }
    .wrapper .mailing:hover {
      border: 2px solid var(--color-blue-1);
      transform: scale(1.1); }
    .wrapper .mailing::before {
      content: '';
      position: absolute;
      width: 33px;
      height: 33px;
      background-image: url("../assets/icons/mail.png");
      background-size: 100%;
      background-repeat: no-repeat; }
    .wrapper .mailing.phone {
      top: 40%; }
      .wrapper .mailing.phone::before {
        background-image: url("../assets/icons/phone.png"); }
    @media (max-width: 552px) {
      .wrapper .mailing {
        width: 40px;
        height: 40px;
        right: 25px;
        top: 25%; }
        .wrapper .mailing.phone {
          top: 33%; }
        .wrapper .mailing::before {
          width: 21px;
          height: 21px; } }

ul, li {
  text-decoration: none;
  list-style: none; }

.highlighted {
  color: var(--color-blue-1); }
  .highlighted.green {
    color: var(--color-green); }

.section-divider {
  position: relative;
  width: 400px;
  height: 2px;
  margin: 5em 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-blue-1);
  text-decoration: none;
  list-style: none;
  border: 0; }
  @media (max-width: 768px) {
    .section-divider {
      margin: 0 0 3em 0; } }

.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }
  @media (min-width: 768px) {
    .container {
      width: 750px; } }
  @media (min-width: 992px) {
    .container {
      width: 970px; } }
  @media (min-width: 1200px) {
    .container {
      width: 1170px; } }

@keyframes fadeIn {
  from {
    transform: translateY(40%);
    opacity: 0; }
  to {
    transform: translateY(0);
    opacity: 1; } }

@keyframes slideIn {
  from {
    transform: translateX(-40%);
    opacity: 0; }
  to {
    transform: translateX(0);
    opacity: 1; } }

@keyframes slideInRight {
  from {
    transform: translateX(40%);
    opacity: 0; }
  to {
    transform: translateX(0);
    opacity: 1; } }

@keyframes slideInTop {
  from {
    transform: translateY(-40%);
    opacity: 0; }
  to {
    transform: translateX(0);
    opacity: 1; } }

.kontakt h2 {
  opacity: 0; }

.kontakt.in-view h2 {
  opacity: 1;
  animation: slideInTop 0.5s ease; }

.leistungen h2 {
  opacity: 0; }

.leistungen.in-view h2 {
  opacity: 1;
  animation: slideIn 0.5s ease; }

.arbeiten h2 {
  opacity: 0; }

.arbeiten.in-view h2 {
  opacity: 1;
  animation: slideInRight 0.5s ease; }

.ueber h2 {
  animation: fadeIn 0.2s ease !important; }

.ueber.in-view {
  animation: fadeIn 0.2s ease !important; }

.in-view h2 {
  opacity: 0; }

.in-view h2 {
  opacity: 1;
  animation: slideIn 0.5s ease; }

.header {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: -1px;
  height: 150px;
  width: 100%;
  display: block;
  background-color: var(--color-blue-1);
  color: var(--color-white);
  box-shadow: 1px 1px 18px 1px #8c8c8c;
  transition: 0.2s ease-out; }
  .header.menu-open .nav {
    background-color: var(--color-blue-1);
    position: fixed;
    margin: 0;
    padding: .8em;
    opacity: 1;
    max-width: 300px;
    border-radius: 5%;
    right: 20px;
    z-index: 999999;
    color: var(--color-white);
    pointer-events: all; }
  .header.menu-open span {
    transition: transform 0.2s cubic-bezier(0.77, 0.2, 0.05, 1); }
  .header.menu-open span:first-child {
    transform: rotate(45deg); }
  .header.menu-open span:nth-last-child(2) {
    transform: translateY(13px) rotate(-45deg); }
  .header.menu-open span:last-child {
    opacity: 0; }
  .header .nav-burger {
    display: none;
    position: relative;
    border: 0;
    outline: 0;
    background-color: transparent;
    margin-left: auto;
    margin-top: 1em;
    padding-right: 1em;
    cursor: pointer; }
    .header .nav-burger span {
      display: block;
      width: 33px;
      height: 4px;
      margin-bottom: 5px;
      position: relative;
      background: #fff;
      border-radius: 3px;
      z-index: 1;
      transform-origin: 4px 0px;
      transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease; }
    .header .nav-burger span:first-child {
      transform-origin: 0% 0%; }
    .header .nav-burger span:nth-last-child(2) {
      transform-origin: 0% 100%; }
  .header.scrolled {
    height: 100px; }
    .header.scrolled .logo {
      top: 20px;
      max-width: calc(230px - .3vw); }
    .header.scrolled .nav {
      padding-top: 1.5em;
      font-size: 22px; }
  .header .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: row; }
    .header .container > a {
      position: absolute; }
  .header .logo {
    max-width: calc(40vw - 4vw);
    height: auto;
    top: 70px;
    position: relative;
    transition: 0.2s ease-out; }
    @media (min-width: 1200px) {
      .header .logo {
        max-width: 400px; } }
  .header .nav {
    position: relative;
    display: inline-block;
    padding-top: 3.5em;
    font-size: 1.5rem;
    margin-left: auto;
    margin-right: 2.5em;
    transition: 0.1s ease-out; }
    .header .nav li {
      display: inline-block;
      padding: 0 .4em;
      position: relative; }
      .header .nav li.nav-item {
        transition: 0.2s ease; }
        .header .nav li.nav-item .hover-overlay {
          opacity: 0;
          position: absolute;
          height: 65px;
          width: 100%;
          z-index: 99;
          cursor: pointer; }
        .header .nav li.nav-item:hover {
          transform: translateY(-10px); }
          .header .nav li.nav-item:hover a::after {
            opacity: 1;
            bottom: -5px; }
        .header .nav li.nav-item a {
          text-decoration: none;
          color: inherit;
          position: relative; }
          .header .nav li.nav-item a::after {
            content: '';
            position: absolute;
            bottom: -13px;
            left: 0;
            right: 0;
            height: 2px;
            background-color: #fff;
            opacity: 0;
            transition: 0.4s ease; }
  @media (max-width: 992px) {
    .header .logo {
      top: 50px;
      max-width: calc(50vw - 4vw); }
    .header .nav {
      background-color: var(--color-blue-1);
      position: fixed;
      margin: 0;
      padding: .8em;
      opacity: 0;
      top: 170px;
      max-width: 300px;
      border-radius: 5%;
      right: 0;
      z-index: 999999;
      color: var(--color-white);
      transition: 0.4s ease;
      pointer-events: none; }
      .header .nav li {
        display: block;
        padding: .15em 0; }
        .header .nav li.nav-item:hover {
          transform: none; }
    .header .nav-burger {
      display: block; }
    .header.scrolled .nav {
      top: 120px;
      padding-top: .9em; } }

@media (max-width: 992px) and (max-width: 520px) {
  .header.scrolled .logo {
    max-width: 170px !important; } }
  @media (max-width: 520px) {
    .header .logo {
      top: 30px;
      margin-left: -15px;
      max-width: 220px !important; } }

.footer {
  position: relative;
  z-index: 999;
  text-align: center;
  height: 120px;
  width: 100%;
  display: block;
  background-color: var(--color-blue-2);
  color: var(--color-white);
  transition: 0.2s ease;
  padding: 0.5em 0; }
  .footer a {
    text-decoration: none;
    color: #bdbdbd;
    transition: 0.2s ease; }
    .footer a:hover {
      color: #fff; }
  .footer ul li {
    padding: .2em 0; }

.content-section {
  position: relative;
  display: block;
  padding-top: 15px; }
  .content-section.ueber {
    margin-top: 150px;
    color: var(--color-text); }
    .content-section.ueber .container {
      display: flex;
      flex-direction: row;
      justify-content: center; }
    .content-section.ueber .intro-text {
      margin: 6em 0;
      text-align: left;
      padding-right: 7em;
      padding-left: 4em;
      max-width: 600px; }
      .content-section.ueber .intro-text h1 {
        font-size: 47px;
        font-weight: 600;
        line-height: 1;
        letter-spacing: -1px; }
      .content-section.ueber .intro-text h2 {
        font-size: 32px;
        font-weight: 300;
        padding-top: 10px; }
.content-section.ueber .about-info-container {
      max-width: 700px;
      margin: 20px auto;
      padding: 2em;
      background-color: #fff;
      box-shadow: 2px 2px 14px -6px #bbbbbb;
      text-align: left;
      border-radius: 15px; }
      .content-section.ueber .about-info-container > h2 {
        font-weight: 500;
        font-size: 36px;
        padding-bottom: 10px; }
      .content-section.ueber .about-info-container > h3 {
        font-size: 18px;
        font-weight: 400; }
    .content-section.ueber img {
      border-radius: 50%;
      max-width: 300px;
      max-height: 300px;
      margin-top: 4em;
      animation: fadeIn 2.1s ease;
      object-fit: cover; }
    @media (max-width: 992px) {
      .content-section.ueber .intro-text {
        padding: 0 1em; }
        .content-section.ueber .intro-text h1 {
          font-size: 42px; }
        .content-section.ueber .intro-text h2 {
          font-size: 27px; } }
    @media (max-width: 768px) {
      .content-section.ueber .container {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center; }
      .content-section.ueber .about-info-container {
        margin: 20px 50px; }
      .content-section.ueber .intro-text {
        text-align: center;
        margin: 4em 0 3em 0; } }
@media (max-width: 552px) {
      .content-section.ueber .about-info-container {
        margin: 20px 8px; } }
  .content-section.leistungen .container {
    max-width: 950px; }
  .content-section.leistungen h2 {
    font-size: 32px;
    font-weight: 400; }
    .content-section.leistungen h2 + h2 {
      font-size: 22px;
      font-weight: 300;
      padding-top: 10px; }
  .content-section.leistungen .work-container, .content-section.leistungen .work-container-no-swiper {
    position: relative;
    margin: 2em auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 5px;
    row-gap: 2em;
    align-items: center;
    justify-content: center; }
    .content-section.leistungen .work-container .card, .content-section.leistungen .work-container-no-swiper .card {
      position: relative;
      display: flex;
      min-height: 280px;
      min-width: 220px;
      margin: 0 1em;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      padding: 1em;
      border-radius: 5%;
      box-shadow: 2px 2px 14px -6px #bbbbbb;
      transition: 0.2s ease;
      border: 2px solid transparent; }
      .content-section.leistungen .work-container .card:hover, .content-section.leistungen .work-container-no-swiper .card:hover {
        transform: scale(1.1);
        border: 2px solid var(--color-blue-1); }
      .content-section.leistungen .work-container .card .image, .content-section.leistungen .work-container-no-swiper .card .image {
        position: relative;
        text-align: center;
        padding-top: 15px; }
      .content-section.leistungen .work-container .card .text, .content-section.leistungen .work-container-no-swiper .card .text {
        padding: 1em 15px;
        font-size: 18px; }
      .content-section.leistungen .work-container .card img, .content-section.leistungen .work-container-no-swiper .card img {
        max-width: 100px; }
  .content-section.leistungen .work-container {
    display: none; }
  @media (max-width: 768px) {
    .content-section.leistungen .work-container, .content-section.leistungen .work-container-no-swiper {
      grid-template-columns: repeat(2, 1fr);
      column-gap: 20px;
      row-gap: 1.5em;
      padding-bottom: 4em; } }
  @media (max-width: 552px) {
    .content-section.leistungen .work-container-no-swiper {
      display: none; }
    .content-section.leistungen .work-container {
      display: block;
      max-width: 320px; }
      .content-section.leistungen .work-container .swiper {
        overflow: visible !important; }
        .content-section.leistungen .work-container .swiper .swiper-pagination {
          bottom: -50px !important; }
          .content-section.leistungen .work-container .swiper .swiper-pagination .swiper-pagination-bullet {
            width: 13px !important;
            height: 13px !important; }
      .content-section.leistungen .work-container .card {
        position: relative;
        display: flex;
        margin: 0;
        min-width: 1px;
        min-height: 280px; }
        .content-section.leistungen .work-container .card:hover {
          transform: none;
          border: 2px solid transparent; } }
  .content-section.arbeiten .container {
    max-width: 950px;
    text-align: right; }
  .content-section.arbeiten h2 {
    font-size: 32px;
    font-weight: 400; }
    .content-section.arbeiten h2 + h2 {
      font-size: 22px;
      font-weight: 300;
      padding-top: 10px; }
  .content-section.arbeiten .text-image-container {
    position: relative;
    display: flex;
    flex-direction: row;
    text-align: left;
    margin: 4em 0 2em 0; }
    .content-section.arbeiten .text-image-container .info-text {
      margin-right: 2.5em; }
      .content-section.arbeiten .text-image-container .info-text.right {
        margin-top: 6em; }
      .content-section.arbeiten .text-image-container .info-text p {
        position: relative;
        font-size: 18px;
        padding: 10px;
        padding-left: 2em;
        padding-right: 1em; }
        .content-section.arbeiten .text-image-container .info-text p::before {
          content: '';
          position: absolute;
          left: 5px;
          top: 17px;
          width: 10px;
          height: 10px;
          border-radius: 50%;
          background-color: var(--color-blue-1);
          display: inline-block; }
    .content-section.arbeiten .text-image-container .images-container {
      position: relative;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      column-gap: 20px;
      row-gap: 1.5em; }
      .content-section.arbeiten .text-image-container .images-container::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(190deg) scaleX(-1);
        width: 80px;
        height: 80px;
        background-image: url("../assets/images/arrow-curved.png");
        background-size: 100%;
        background-repeat: no-repeat; }
      .content-section.arbeiten .text-image-container .images-container img {
        position: relative;
        max-width: 230px;
        max-height: 420px;
        border-radius: 3%;
        box-shadow: 2px 2px 14px -3px #999999;
        -moz-box-shadow: 2px 2px 14px -3px #999999;
        -webkit-box-shadow: 2px 2px 14px -3px #999999; }
        .content-section.arbeiten .text-image-container .images-container img.img-before, .content-section.arbeiten .text-image-container .images-container img.img-after {
          margin-top: 4em; }
  @media (max-width: 720px) {
    .content-section.arbeiten .text-image-container {
      display: flex;
      margin: 4em 0 1em 0;
      flex-direction: column-reverse;
      justify-content: center;
      align-items: center; }
      .content-section.arbeiten .text-image-container .info-text {
        margin: 0;
        padding-bottom: 2em;
        padding-top: 2em;
        max-width: 465px; }
        .content-section.arbeiten .text-image-container .info-text.right {
          text-align: right;
          margin-left: auto;
          order: -1;
          margin-top: 1em; }
          .content-section.arbeiten .text-image-container .info-text.right p {
            padding-left: 2em;
            padding-right: 30px; }
            .content-section.arbeiten .text-image-container .info-text.right p::before {
              background-color: var(--color-blue-1);
              right: 5px;
              left: unset; }
        .content-section.arbeiten .text-image-container .info-text p {
          position: relative;
          font-size: 18px;
          padding-left: 30px;
          padding-right: 2em;
          padding-top: 10px; }
      .content-section.arbeiten .text-image-container .images-container {
        grid-template-columns: repeat(2, 0fr);
        column-gap: 15px;
        row-gap: 1em;
        align-items: center;
        justify-content: center; }
        .content-section.arbeiten .text-image-container .images-container img {
          width: calc(50vw - 5vw);
          height: calc(100vw - 15vw); } }
  .content-section.kontakt .container {
    max-width: 950px;
    text-align: center; }
  .content-section.kontakt .contact-info-text-title {
    text-align: left;
    padding-left: 6em; }
    @media (max-width: 768px) {
      .content-section.kontakt .contact-info-text-title {
        padding-left: 2em; } }
  .content-section.kontakt .contact-info-text {
    padding: 2em 8em 4em 8em;
    font-size: 19px;
    font-weight: 400; }
    @media (max-width: 768px) {
      .content-section.kontakt .contact-info-text {
        font-size: 17px;
        padding: 2em 2em; } }
  .content-section.kontakt h2 {
    font-size: 32px;
    font-weight: 300;
    padding-top: 10px; }
  .content-section.kontakt .contact-form {
    position: relative;
    display: block;
    margin: 3.5em auto;
    text-align: left;
    max-width: 500px;
    padding-bottom: 3em; }
    .content-section.kontakt .contact-form .message-sent::before {
      content: "Gesendet!";
      position: fixed;
      z-index: 999999;
      top: 20%;
      left: 50%;
      transform: translateX(-50%);
      background-color: #fff;
      box-shadow: 2px 2px 14px -6px #bbbbbb;
      padding: 2em 5em;
      color: var(--color-green); }
    .content-section.kontakt .contact-form .form-invalid {
      color: #a62121;
      font-size: 18px; }
      .content-section.kontakt .contact-form .form-invalid::before {
        content: "Pruefen Sie Ihre Eingaben.";
        position: absolute;
        top: -30px; }
    .content-section.kontakt .contact-form input, .content-section.kontakt .contact-form textarea {
      border: 1px solid var(--color-blue-1);
      outline: 0;
      width: 100%;
      max-width: 500px;
      text-decoration: none;
      list-style: none;
      display: block;
      font-size: 18px;
      margin: .2em 0 1em 0;
      padding: 1.3em .8em;
      transition: 0.2s ease;
      font-family: "Helvetica", sans-serif; }
      .content-section.kontakt .contact-form input:focus, .content-section.kontakt .contact-form textarea:focus {
        border: 1px solid var(--color-blue-1); }
        .content-section.kontakt .contact-form input:focus + span, .content-section.kontakt .contact-form textarea:focus + span {
          color: var(--color-green);
          font-size: 0.825em;
          transform: translate(14px, 7px); }
      .content-section.kontakt .contact-form input::placeholder, .content-section.kontakt .contact-form textarea::placeholder {
        opacity: 0;
        font-size: 0; }
    .content-section.kontakt .contact-form textarea:focus > span, .content-section.kontakt .contact-form input:focus > span,
    .content-section.kontakt .contact-form input:not(:placeholder-shown) + span, .content-section.kontakt .contact-form textarea:not(:placeholder-shown) + span {
      font-size: 0.825em;
      transform: translate(10px, 6px);
      color: var(--color-blue-1); }
    .content-section.kontakt .contact-form .fieldset {
      position: relative; }
    .content-section.kontakt .contact-form span {
      position: absolute;
      top: 0;
      left: 0;
      transform: translate(25px, 25px);
      font-size: 1em;
      transition-duration: 300ms;
      pointer-events: none;
      color: #8c8c8c; }
    .content-section.kontakt .contact-form button {
      position: relative;
      border: 0;
      outline: 0;
      background-color: var(--color-blue-1);
      transition: 0.2s ease;
      margin-top: 15px;
      padding: 1em 1.7em;
      font-size: 17px;
      color: #fff;
      cursor: pointer;
      left: 50%;
      transform: translateX(-50%);
      margin-left: auto; }
      .content-section.kontakt .contact-form button:hover {
        background-color: #06abff; }
  .content-section .container {
    animation: fadeIn 1s ease; }
