:root {
  --font1: "Lexend", sans-serif;
  --font2: "Onest", sans-serif;
  --color1: #003e56;
  --color2: #143165;
  --fontLight: #fff;
  --fontDark: #222;
  --shadow: rgba(33, 33, 33, 0.2) 0px 8px 24px;
  --gradiant: linear-gradient(45deg, var(--color1), var(--color2));
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-family: var(--font2);
}

::-moz-selection {
  color: var(--fontLight);
  background: var(--color2);
}

::selection {
  color: var(--fontLight);
  background: var(--fontDark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font1);
  font-style: normal;
  word-break: auto-phrase;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  margin-bottom: 1rem;
}

h1 {
  font-weight: 700;
  font-size: 3rem;
  color: var(--color2);
}

h2 {
  font-weight: 700;
  font-size: 2.3rem;
  color: var(--color2);
}

h3 {
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--color2);
}

p {
  font-weight: 300;
  font-style: normal;
  margin-bottom: 1em;
  font-size: 1.3rem;
  line-height: 1.85rem;
  /* letter-spacing: 0.12rem;
  word-spacing: 0.16rem; */
}

a {
  color: var(--fontDark);
}

li {
  list-style: none;
}


header {
  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;
  position: relative;
  height: 100vh;
  z-index: 2;
}

header::after {
  content: " ";
  position: absolute;
  height: 100%;
  width: 100%;
  background: var(--color2);
  opacity: .4;
}

#headerScrollDown {
  color: #fff;
  font-size: 3em;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  rotate: 90deg;
  z-index: 100;
  -webkit-animation: scrollDown 1.5s ease-in-out infinite;;
  animation: scrollDown 1.5s ease-in-out infinite;
}

#headerScrollDown:hover {
  cursor: pointer;
}

header>h1,
p {
  max-width: 50vw;
  z-index: 4;
}

.container {
  max-width: 1024px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.row {
  margin: 3rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.row~.row {
  margin: 0 0 4rem 0;
}

[class*='col-'] {
  padding: 0 1rem;
}

.col-3 {
  width: 33.333%;
}

.col-2-33 {
  width: 33.333%;
}

.col-2-66 {
  width: 66.66%;
}

.col-2 {
  width: 50%;
}

.col-1 {
  width: 100%;
  padding-bottom: 0;
}

.fontLight {
  color: var(--fontLight);
}

.shadow {
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
}

.textCenter {
  text-align: center;
}

#leistungen1 .row {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

#leistungen1 .col-2 {
  width: unset;
}

#logo {
  max-height: 90vh;
  max-width: 100%;
  padding: 0;
  margin-bottom: 4em;
  z-index: 1;
}

#start,
#trenner {
  background-image: url("img/Hintergrund_Planungsbuero_Bruehl.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

#trenner {
  padding: 5em 0;
}

#trenner>span {
  font-size: 3em;
}

footer {
  background: var(--color2);
  padding: 2rem 0;
}

footer h3{
  color: #fff;
}

footer a {
  color: var(--fontLight);
}

.fadeIn {
  -webkit-animation: fadeIn 2s ease-in-out;
  animation: fadeIn 2s ease-in-out;
  opacity: 1;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}


@keyframes scrollDown {
  0% {
    opacity: 0;
    bottom: 10px;
  }

  100% {
    opacity: 1;
    bottom: 0px;
  }
}

@-webkit-keyframes scrollDown {
  0% {
    opacity: 0;
    bottom: 10px;
  }

  100% {
    opacity: 1;
    bottom: 0px;
  }
}

@media (prefers-reduced-motion) {
  .fadeIn {
    -webkit-animation-name: none;
    animation-name: none;
  }
}

@media (max-width: 920px) {
  h1 {
    font-size: 2.4em;
  }

  h2 {
    font-size: 2em;
  }

  h3 {
    font-size: 1.5em;
  }

  header>h1,
  p {
    max-width: 80vw;
  }

  #leistungen1 .row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  [class*='col-'],
  h1,
  h2,
  h3 {
    margin-bottom: .7em;
  }

  [class*='col-'] {
    padding: 0;
  }

  .row {
    margin: 3.5em 0;
  }

  .col-3 {
    width: 100%;
  }

  .col-2 {
    width: 100%;
  }

  .col-2-33 {
    width: 100%;
  }

  .col-2-66 {
    width: 100%;
  }

  .specialJubRight {
    padding: 2em;
  }

  .textRight {
    float: none;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2em;
  }

  h2 {
    font-size: 1.6em;
  }

  h3 {
    font-size: 1.2em;
  }

  .textRight {
    float: right;
  }

  p {
    line-height: 1.45em;
  }
}