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

body {
  line-height: 1.4;
}

/* -------------------------------------------  HEADER ------------------------------------------- */
header {
  position: sticky;
  top: 0;
  background-color: white;
  z-index: 1000;
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}
header .header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px;
  max-width: 1000px;
  margin: 0 auto;
}
header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
header nav a {
  text-decoration: none;
  color: #000;
}
header .logo img {
  -webkit-filter: brightness(0) saturate(100%) invert(25%) sepia(10%) saturate(3321%) hue-rotate(173deg) brightness(97%) contrast(85%);
          filter: brightness(0) saturate(100%) invert(25%) sepia(10%) saturate(3321%) hue-rotate(173deg) brightness(97%) contrast(85%);
}

/* -------------------------------------------  Buttons  ------------------------------------------- */
#open-menu,
#close-menu {
  display: none;
}

.contact-btn {
  background-color: #2c4d74;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  border: none;
}

/* -------------------------------------------  MAIN  ------------------------------------------- */
main {
  opacity: 0;
  -webkit-animation: fadeIn 1s ease-in-out forwards;
          animation: fadeIn 1s ease-in-out forwards;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* -------------------------------------------  BANNER  ------------------------------------------- */
.banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  background-color: #322c74;
  background-color: #2c4d74;
  background: -webkit-gradient(linear, left top, left bottom, from(#2c4d74), to(#1b2f46));
  background: linear-gradient(180deg, #2c4d74, #1b2f46 100%);
  padding: 60px 20px;
  color: white;
  min-height: 240px;
  font-size: 35px;
}
.banner h1 {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.banner img {
  -webkit-filter: brightness(10);
          filter: brightness(10);
  max-width: 500px;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* -------------------------------------------  CONTAINER  ------------------------------------------- */
.container-full {
  padding: 60px 20px;
}
.container-full.bg {
  background-color: #2c4d74;
  color: white;
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#2c4d74), to(#1b2f46));
  background: linear-gradient(180deg, #2c4d74, #1b2f46 100%);
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

.text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: start;
}

ul {
  margin-left: 25px;
}

h2 {
  font-size: 30px;
  letter-spacing: 1.1px;
}

.underline {
  text-decoration: underline;
}

/* -------------------------------------------  Dienstleistung  ------------------------------------------- */
.title {
  text-align: center;
  margin-bottom: 60px;
}

.dienstleistung {
  background-color: whitesmoke;
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.22);
          box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.22);
  padding: 30px;
  border-radius: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.dienstleistung h3 {
  margin-bottom: 15px;
  font-size: 22px;
}
.dienstleistung:hover {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

/* -------------------------------------------  Location  ------------------------------------------- */
.location {
  text-align: center;
  padding: 40px;
  color: white;
  border-radius: 20px;
  margin: 0 auto;
}
.location h3 {
  margin-bottom: 15px;
  font-size: 22px;
  text-decoration: underline;
}

/* ------------------------------------------- Contact form  ------------------------------------------- */
form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  background-color: whitesmoke;
  background: -webkit-gradient(linear, left top, left bottom, from(#2c4d74), to(#1b2f46));
  background: linear-gradient(180deg, #2c4d74, #1b2f46 100%);
  color: white;
  padding: 40px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
}
form label {
  font-size: 18px;
  width: 100%;
  font-weight: 500;
}
form input,
form textarea {
  width: 100%;
  padding: 15px;
  background-color: white;
  border: none;
  font-size: 15px;
  border-radius: 4px;
  font-family: inherit;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
}
form .checkbox-label {
  display: block;
}
form .checkbox-label input {
  width: auto;
}
form .checkbox-label a {
  color: white;
}
form .contact-btn {
  padding: 15px 20px;
  font-size: 16px;
  background-color: whitesmoke;
  color: black;
  font-weight: bold;
  margin: 0 auto;
  margin-top: 5px;
}

/* ------------------------------------------- Footer ------------------------------------------- */
footer {
  background-color: whitesmoke;
  -webkit-box-shadow: 0px -2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0px -2px 4px rgba(0, 0, 0, 0.1);
}
footer img {
  -webkit-filter: brightness(0) saturate(100%) invert(25%) sepia(10%) saturate(3321%) hue-rotate(173deg) brightness(97%) contrast(85%);
          filter: brightness(0) saturate(100%) invert(25%) sepia(10%) saturate(3321%) hue-rotate(173deg) brightness(97%) contrast(85%);
}
footer .footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
}
footer .footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
footer .footer-links a {
  text-decoration: none;
  color: #000;
}
footer .footer-links button {
  font-family: inherit;
  text-decoration: none;
  background-color: transparent;
  border: none;
  font-size: 16px;
  line-height: 1.4;
  cursor: pointer;
}

/* -------------------------------------------  Map  ------------------------------------------- */
iframe {
  width: 100%;
  height: 450px;
  border: none !important;
  font-size: 0 !important;
}

#no-cookie {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  padding: 20px;
  font-weight: bold;
}
#no-cookie button {
  background-color: #2c4d74;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  border: none;
}

/* -------------------------------------------  MEDIA QUERIES  ------------------------------------------- */
@media only screen and (max-width: 992px) {
  h2 {
    font-size: 25px;
  }
  .dienstleistung h3 {
    font-size: 20px;
  }
  .container-full {
    padding: 20px;
  }
  .title {
    margin-bottom: 20px;
  }
  form {
    padding: 30px;
  }
  footer .footer-content {
    padding: 20px;
  }
}
@media only screen and (max-width: 768px) {
  #open-menu,
  #close-menu {
    display: block;
    cursor: pointer;
  }
  #close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
  }
  .logo img {
    width: 120px;
  }
  header .header-content {
    padding: 10px 20px;
  }
  header nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 15px;
    background-color: white;
    font-size: 20px;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  header nav.active {
    pointer-events: all;
    opacity: 1;
  }
  h2 {
    font-size: 20px;
  }
  .dienstleistung h3 {
    font-size: 18px;
  }
  .banner {
    padding: 40px 20px;
    font-size: 24px;
  }
  .banner img {
    width: 85%;
  }
  form label {
    font-size: 16px;
  }
  form input,
  form textarea {
    font-size: 14px;
  }
  footer img {
    width: 160px;
  }
  footer .footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .footer-links {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
}
@media only screen and (max-width: 600px) {
  .banner {
    font-size: 16px;
    min-height: 150px;
  }
  form {
    padding: 20px;
  }
}/*# sourceMappingURL=styles.css.map */