* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  scroll-margin-top: 70px;
  -webkit-tap-highlight-color: transparent;
}

body {
  line-height: 1.6;
  font-size: 15px;
  background-color: whitesmoke;
}

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

/* -------------------------------------------  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: 1200px;
  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;
  font-size: 15px;
  font-weight: 600;
}
header nav.no-transition {
  -webkit-transition: none !important;
  transition: none !important;
}
header .logo {
  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: 20px;
  text-decoration: none;
  color: #2d416c;
  font-weight: bold;
  font-size: 14px;
}
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 25px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  border: none;
  font-size: 16px;
  font-weight: bold;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.contact-btn:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

/* -------------------------------------------  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  gap: 20px;
  margin: 0 auto;
  padding: 0px 20px;
  padding-right: 0;
  padding-top: 20px;
  color: #2d416c;
  min-height: 240px;
  overflow: hidden;
}
.banner.subpage {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(44, 76, 116, 0.8823529412)), to(rgba(45, 94, 153, 0.862745098))), url(../assets/images/etactics-inc-qg4bsLrwhl0-unsplash.webp);
  background: linear-gradient(rgba(44, 76, 116, 0.8823529412), rgba(45, 94, 153, 0.862745098)), url(../assets/images/etactics-inc-qg4bsLrwhl0-unsplash.webp);
  background-size: cover;
  background-position: center;
  min-height: 370px;
  color: white;
  padding: 20px;
}
.banner.subpage h1 {
  font-size: 60px;
}
.banner #banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: -1;
  -webkit-filter: blur(20px);
          filter: blur(20px);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.banner .banner-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  gap: 4px;
  font-weight: 500;
  font-size: 42px;
  -webkit-transition: 0;
  transition: 0;
}
.banner .banner-name {
  font-size: 1.03em;
  -webkit-transition: none;
  transition: none;
}
.banner .banner-name-2 {
  font-size: 0.61em;
  padding-bottom: 4px;
  border-bottom: 4px solid #2c4d74;
}
.banner .banner-name-3 {
  font-size: 0.64em;
}
.banner h1 {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  line-height: 1;
}
.banner .banner-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.banner .banner-left {
  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;
}
.banner .banner-left img {
  max-width: 100px;
  width: 100%;
}
.banner .banner-right {
  font-size: 0;
}
.banner .banner-right img {
  margin-bottom: -220px;
  width: 100%;
}

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

.container-double {
  display: grid;
  grid-template-columns: 4.5fr 7.5fr;
  background: whitesmoke;
  color: black;
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
}
.container-double .text {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  padding: 50px;
}

#map-placeholder {
  padding: 25px;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

#unterstuchungsstelle {
  padding: 60px 20px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(44, 76, 116, 0.9450980392)), to(rgba(45, 94, 153, 0.9607843137))), url(../assets/images/etactics-inc-qg4bsLrwhl0-unsplash.webp);
  background: linear-gradient(rgba(44, 76, 116, 0.9450980392), rgba(45, 94, 153, 0.9607843137)), url(../assets/images/etactics-inc-qg4bsLrwhl0-unsplash.webp);
  background-size: cover;
  background-position: center;
  color: white;
}

#unterstuchungsstelle .container {
  max-width: 1440px;
}

.address {
  font-weight: bold;
}

.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;
  margin: 0 auto;
  text-align: start;
}
.text a {
  color: #2d5e99;
}

ul {
  margin-left: 25px;
}

b {
  font-weight: 600;
}

.underline {
  text-decoration: underline;
  font-weight: bold;
}

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

.dienstleistung {
  background-color: rgb(255, 255, 255);
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 10px;
  -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);
}

/* ------------------------------------------- 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: white;
  color: black;
  padding: 40px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
}
form label {
  width: 100%;
  font-weight: 500;
}
form input,
form textarea {
  width: 100%;
  padding: 15px;
  background-color: whitesmoke;
  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: #2d5e99;
  text-decoration: none;
  font-weight: bold;
}
form .contact-btn {
  padding: 20px;
}

/* -------------------------------------------  CTA  ------------------------------------------- */
.cta {
  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;
}

/* ------------------------------------------- Footer ------------------------------------------- */
footer {
  background-color: rgb(230, 229, 229);
}
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: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  border-bottom: 2px solid rgb(216, 213, 213);
}
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;
  font-weight: 600;
}
footer .footer-links button {
  font-family: inherit;
  text-decoration: none;
  background-color: transparent;
  border: none;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  cursor: pointer;
}
footer .copyright {
  text-align: center;
  font-weight: 600;
  padding: 10px 20px;
}

/* -------------------------------------------  Map  ------------------------------------------- */
iframe {
  display: block;
  width: 100%;
  height: 500px;
  border: none !important;
  border-radius: 10px;
  font-size: 0 !important;
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
}

#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: 1200px) {
  .banner .banner-right img {
    margin-bottom: 0;
  }
  .banner .banner-text {
    font-size: 32px;
  }
}
@media only screen and (max-width: 992px) {
  .banner.subpage {
    min-height: 250px;
  }
  .banner.subpage h1 {
    font-size: 40px;
  }
  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;
  }
  #open-menu,
  #close-menu {
    display: block;
    cursor: pointer;
  }
  #close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
  }
  h2 {
    font-size: 25px;
  }
  .dienstleistung h3 {
    font-size: 20px;
  }
  .container-full {
    padding: 20px;
  }
  .title {
    margin-bottom: 20px;
  }
  #unterstuchungsstelle {
    padding: 20px;
  }
  .container-double {
    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;
  }
  .container-double .text {
    padding: 20px;
    padding-bottom: 0;
  }
  .cta {
    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;
    text-align: center;
  }
  form {
    padding: 30px;
    gap: 10px;
  }
  footer .footer-content {
    padding: 20px;
  }
  #map-placeholder {
    padding: 0;
  }
}
@media only screen and (max-width: 768px) {
  .banner {
    padding: 0;
  }
  .banner .banner-content {
    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: 0;
  }
  .banner .banner-left {
    width: 100%;
    padding: 20px;
    padding-bottom: 0;
    z-index: 2;
    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;
  }
  .banner .banner-left img {
    width: 30%;
  }
  .banner .banner-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
  .banner .banner-right img {
    width: 90%;
    margin-bottom: -40%;
    margin-top: -10%;
  }
  .banner .banner-text {
    font-size: 6.2vw;
  }
  h2 {
    font-size: 20px;
  }
  .dienstleistung h3 {
    font-size: 18px;
  }
  form input,
  form textarea {
    font-size: 14px;
  }
  form .contact-btn {
    width: 100%;
  }
  footer img {
    width: 80px;
  }
  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;
  }
  .banner.subpage {
    min-height: 200px;
  }
  form {
    padding: 20px;
  }
  iframe {
    height: 420px;
  }
}/*# sourceMappingURL=styles.css.map */