* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box; }

html {
  scroll-behavior: smooth; }

body {
  font-family: "Roboto", Arial, non-serif;
  font-weight: 300;
  font-size: 16px;
  color: #292929;
  line-height: 24px; }

h1 {
  font-family: "Superior-Title", Times, serif;
  font-weight: 500;
  font-size: 52px;
  line-height: normal;
  margin-bottom: 30px; }

h2, .h2 {
  font-family: "Superior-Title", Times, serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 40px;
  margin-bottom: 48px; }

h3 {
  font-size: 24px;
  font-weight: 800;
  line-height: 30px;
  margin-bottom: 30px; }

h3:last-child {
  margin-bottom: 0; }

p {
  margin-bottom: 30px; }

p:last-child {
  margin-bottom: 0; }

strong {
  font-weight: 600; }

img {
  display: block;
  width: 100%;
  height: auto;
  user-drag: none;
  -webkit-user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none; }

span.highlight {
  color: #01a7c2; }

ul li {
  list-style: none; }

a {
  text-decoration: underline;
  color: #262626; }

a.button {
  background: #01a7c2;
  color: white;
  padding: 10px;
  width: 100%;
  text-decoration: none;
  display: block;
  font-weight: 500;
  transition: 300ms all; }
  a.button:hover {
    cursor: pointer;
    transition: 300ms all;
    filter: brightness(110%); }

header {
  background: white;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1;
  box-shadow: black 0 4px 32px -20px; }

.header-wrapper {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between; }
  .header-wrapper .logo-wrapper {
    padding: 20px 0;
    display: flex;
    position: relative;
    align-items: flex-end; }
    .header-wrapper .logo-wrapper .claim {
      display: flex;
      flex-direction: column;
      margin-left: 15px;
      font-family: "Oswald", Arial, non-serif;
      font-size: 18px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #01a7c2;
      font-weight: 400; }
    .header-wrapper .logo-wrapper .logo {
      width: 80px;
      height: auto; }
      .header-wrapper .logo-wrapper .logo-link {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0; }
  .header-wrapper .main-menu-wrapper {
    display: flex;
    flex-direction: column-reverse; }
    .header-wrapper .main-menu-wrapper ul.main-menu {
      display: flex;
      padding: 0;
      margin: 0;
      font-family: "Oswald", Arial, non-serif;
      font-size: 18px; }
      .header-wrapper .main-menu-wrapper ul.main-menu li > a {
        text-transform: uppercase;
        margin: 0 20px;
        padding-bottom: 21px;
        letter-spacing: 3px;
        text-decoration: none;
        display: block;
        transition: none; }
      .header-wrapper .main-menu-wrapper ul.main-menu li:last-child > a {
        margin-right: 0; }
      .header-wrapper .main-menu-wrapper ul.main-menu li > a:hover {
        color: #01a7c2;
        border-bottom: 2px solid #01a7c2;
        padding-bottom: 19px;
        transition-all: 200ms; }
  .header-wrapper .mobile-menu-wrapper {
    display: none;
    position: absolute;
    top: 120px;
    background: white;
    left: 0;
    padding: 0 40px;
    width: 50%;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px; }
    .header-wrapper .mobile-menu-wrapper ul.mobile-menu {
      font-family: "Oswald", Arial, non-serif;
      font-size: 20px; }
      .header-wrapper .mobile-menu-wrapper ul.mobile-menu li > a {
        text-transform: uppercase;
        margin: 35px 0;
        letter-spacing: 3px;
        text-decoration: none;
        display: block; }
    .header-wrapper .mobile-menu-wrapper div.social-menu {
      justify-content: space-between;
      margin: 40px 0;
      border-top: 3px solid #01a7c2;
      padding-top: 35px; }
      .header-wrapper .mobile-menu-wrapper div.social-menu img {
        height: 36px;
        width: auto;
        transition: transform 0.5s ease-in-out; }
      .header-wrapper .mobile-menu-wrapper div.social-menu img:hover {
        transform: rotate(-15deg); }
  .header-wrapper .menu-toggle-icon {
    display: none;
    cursor: pointer;
    margin-top: 40px; }
  .header-wrapper .bar1, .header-wrapper .bar2, .header-wrapper .bar3 {
    width: 50px;
    height: 5px;
    background-color: #262626;
    margin: 6px 0;
    transition: 0.4s;
    border-radius: 4px; }
  .header-wrapper .change .bar1, .header-wrapper .change .bar2, .header-wrapper .change .bar3 {
    background-color: #01a7c2; }
  .header-wrapper .change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px);
    transform: rotate(-45deg) translate(-9px, 6px); }
  .header-wrapper .change .bar2 {
    opacity: 0; }
  .header-wrapper .change .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    transform: rotate(45deg) translate(-8px, -8px); }

main {
  margin-top: 120px; }
  main .content {
    position: relative; }
  main .content-wrapper {
    padding: 80px 40px;
    max-width: 1040px;
    width: 100%;
    margin: 0 auto; }
    main .content-wrapper.full-width {
      max-width: none;
      padding: 80px 0 0 0; }
      main .content-wrapper.full-width .text-only {
        padding: 0 40px; }
    main .content-wrapper .text-only {
      text-align: center;
      width: 100%;
      max-width: 560px;
      margin: 0 auto; }
    main .content-wrapper .text-image {
      display: flex;
      justify-content: space-between; }
      main .content-wrapper .text-image .text {
        text-align: left; }
    main .content-wrapper .text {
      text-align: center; }
  main .content-wrapper.special {
    padding: 0 40px;
    position: relative; }
    main .content-wrapper.special .text {
      padding: 130px 0 80px 0;
      width: 70%; }
    main .content-wrapper.special .image {
      padding-top: 80px;
      position: absolute;
      right: 0;
      bottom: 0;
      z-index: 0;
      max-width: none; }
  main .content-wrapper > .only-text {
    text-align: center; }
  main .bg-img-top {
    background-image: url("../images/blue-bg-top.png");
    background-repeat: no-repeat; }
  main .content.bg-black {
    background: #292929;
    color: white; }
    main .content.bg-black a {
      color: white; }
  main .content.bg-blue {
    background: #01a7c2;
    color: white; }
  main .content.bg-white {
    background: white; }
  main .content.bg-grey {
    background: #e6e9ec; }
  main .row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px; }
    main .row .column {
      width: 33.333%;
      height: auto;
      background: #e6e9ec;
      padding: 40px 30px;
      margin: 0 20px;
      border-radius: 10px; }
      main .row .column .icon {
        margin-bottom: 30px; }
      main .row .column .icon > img {
        width: 60px;
        height: auto;
        margin: 0 auto; }
    main .row .column:first-child {
      margin-left: 0; }
    main .row .column:last-child {
      margin-right: 0; }
  main .masonryholder {
    column-gap: 0;
    columns: 250px 4;
    width: 100%; }
    main .masonryholder .masonryblocks {
      margin: 0;
      width: 100%;
      box-sizing: border-box; }
    main .masonryholder .masonryblocks img {
      width: 100%;
      filter: brightness(0.5) grayscale(100);
      transition: 0.3s ease-in-out; }
    main .masonryholder .masonryblocks img:hover {
      filter: brightness(1) grayscale(0); }
    main .masonryholder .masonryblocks.give-background img {
      background: white;
      padding: 40px; }
  main .contact-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; }
    main .contact-wrapper span {
      font-weight: 500;
      display: flex;
      margin-bottom: 30px; }
    main .contact-wrapper span.number {
      margin-right: 30px; }
    main .contact-wrapper span::before {
      content: "";
      display: block;
      margin-right: 10px;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center; }
    main .contact-wrapper span.number::before {
      background-image: url("../images/telephone.png");
      width: 30px;
      height: 30px; }
    main .contact-wrapper span.mail::before {
      background-image: url("../images/mail.png");
      width: 30px;
      height: 21px;
      margin-top: 2px; }

main .bg-black a:hover {
  color: #01a7c2; }

.bg-blue a:hover {
  color: #262626; }

.footer-content .content-wrapper {
  padding: 40px;
  max-width: 1040px;
  width: 100%;
  margin: 0 auto; }
  .footer-content .content-wrapper .footer-menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin-left: 20px; }
  .footer-content .content-wrapper .footer-menu a:hover {
    color: #262626; }
  .footer-content .content-wrapper .socials img {
    height: 30px;
    width: auto;
    transition: transform 0.5s ease-in-out; }
  .footer-content .content-wrapper .socials img:hover {
    transform: rotate(-15deg); }
  .footer-content .content-wrapper .socials a {
    margin-right: 20px; }

.footer-content.bg-blue {
  background: #01a7c2;
  color: white; }

.flex {
  display: flex; }

.space-between {
  justify-content: space-between; }

.to-top-button {
  width: 31px;
  height: 30px; }
  .to-top-button img {
    margin-top: 5px; }

#leistungen, #kontakt, #portfolio {
  margin-top: -104px;
  position: absolute;
  top: 0; }

.break-word {
  /* These are technically the same, but use both */
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  /* This is the dangerous one in WebKit, as it breaks things wherever */
  word-break: break-all;
  /* Instead use this non-standard one: */
  word-break: break-word;
  /* Adds a hyphen where the word breaks, if supported (No Blink) */
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto; }

/* KONTAKTFORMULAR */
form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 40px;
  row-gap: 40px;
  padding-top: 20px;
  color: white; }
  form label {
    display: none; }
  form input#submit {
    background: #01a7c2;
    border-bottom: 1px solid #01a7c2;
    font-weight: 500; }
    form input#submit:hover {
      cursor: pointer;
      transition: 300ms all;
      filter: brightness(110%); }
  form input {
    flex-basis: calc(50% - (40px / 2));
    height: 40px; }
  form textarea {
    flex-basis: 100%;
    min-height: 120px; }
  form input, form textarea {
    padding: 0 10px;
    background: transparent;
    color: white;
    border-bottom: 1px solid #4c4c4c;
    transition: 300ms all;
    font-size: 16px;
    font-family: inherit;
    font-weight: 300; }
  form input:focus, form textarea:focus, form input:hover, form textarea:hover {
    border-bottom: 1px solid #01a7c2;
    transition: 300ms all; }
  form input::-webkit-input-placeholder {
    color: white; }
  form input::-moz-placeholder {
    color: white; }
  form input::-ms-input-placeholder {
    color: white; }
  form input::placeholder {
    color: white; }
  form textarea::-webkit-input-placeholder {
    color: white; }
  form textarea::-moz-placeholder {
    color: white; }
  form textarea::-ms-input-placeholder {
    color: white; }
  form textarea::placeholder {
    color: white; }

@media (max-width: 900px) {
  .header-wrapper .menu-toggle-icon {
    display: inline-block; }
  .header-wrapper .main-menu-wrapper {
    display: none; }
  .header-wrapper .logo-wrapper {
    align-items: center; }

  main .row {
    flex-wrap: wrap;
    justify-content: center; }
    main .row .column {
      width: calc(50% - 20px);
      margin: 0 0 40px 0; }
    main .row .column:first-child {
      margin: 0 40px 40px 0; }
    main .row .column:last-child {
      width: 100%; }

  main .content-wrapper.special .image {
    max-width: 240px; }

  main .content-wrapper.special .text {
    padding: 100px 0 80px 0; } }
@media (max-width: 580px) {
  h1 {
    font-size: 44px; }

  h2 {
    font-size: 32px; }

  .header-wrapper {
    padding: 0 20px; }

  .header-wrapper .mobile-menu-wrapper {
    width: 100%; }

  main .row .column {
    width: 100%;
    margin: 0 0 40px 0; }
  main .row .column:first-child {
    margin: 0 0 40px 0; }
  main .content-wrapper {
    padding: 60px 20px; }
  main .content-wrapper.full-width {
    padding: 60px 0 0 0; }
    main .content-wrapper.full-width .text-only {
      padding: 0 20px; }

  main .content-wrapper.special {
    padding: 0 20px; }

  main .content-wrapper.special .text {
    padding: 80px 0 420px 0;
    width: 100%; }

  main .content-wrapper.special .image {
    right: calc(50% - 138px); }

  .footer-content .content-wrapper {
    padding: 40px 20px; }

  form {
    row-gap: 20px;
    column-gap: 20px; }
    form input {
      flex-basis: 100%; } }

/*# sourceMappingURL=style.min.css.map */
