@charset "UTF-8";
@import "font.css";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  min-height: 100vh;
  font-family: "Barlow", sans-serif;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

:root {
  --pink: #3d6fb7;
  --color-secondary: #475569;
  --color-accent: #7c3aed;
  --color-success: #22c55e;
  --color-warning: #eab308;
  --color-error: #ef4444;
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --max-width: 1200px;
  --padding-side: 2rem;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#wrapper {
  display: flex;
}

#container {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  bottom: 0;
  top: auto;
  padding-top: 2rem;
}
#container::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 50px;
  width: 550px; /* required */
  height: 700px; /* required */
  background-image: url(../img/holz.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  clear: both;
  background-position: right bottom;
  z-index: -1;
}
#container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto auto auto;
}
#container ul {
  padding-left: 1.3rem;
}
#container ul li {
  padding-top: 0.5rem;
}
#container ul li::before {
  content: "•";
  color: var(--pink);
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

footer {
  background-color: var(--pink);
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  z-index: 10;
  color: #fff;
}
footer .inside {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: flex;
  padding-left: var(--padding-side);
}
footer a {
  color: white;
  text-decoration: none;
  margin-left: 1rem;
  margin-right: 1rem;
}
footer a:first-child {
  margin-left: 0;
}

#logo {
  max-width: 280px;
}

#phone {
  text-align: right;
}
#phone img {
  padding-top: 1rem;
  margin-right: 0;
  margin-left: auto;
}

#imgcontainer {
  grid-column: 7/13;
  justify-self: end;
}

#content {
  grid-column: 1/7;
  grid-row: 1/-1;
  padding: var(--padding-side);
}
#content h1 {
  color: var(--pink);
  font-size: 2rem;
}
#content h2 {
  color: var(--pink);
  font-size: 1.5rem;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-top: 2rem;
}
#content h2 + p {
  margin-top: 0rem;
  padding-top: 0.5rem;
}
#content p {
  padding-top: 3rem;
  max-width: 80%;
}

.trenner {
  padding: 1rem 0;
}

.colored-line {
  width: 100%;
  height: 2px;
  background: #F6821F;
  margin: 20px 0;
}

address {
  font-style: normal;
  padding-bottom: 2rem;
}

@media (max-width: 600px) {
  html {
    font-size: 13px;
  }
  #content {
    grid-column: 1/-1;
    padding: 0 1rem;
    grid-row: 2/-1;
    padding-top: 2rem;
  }
  #container {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    bottom: 0;
    top: auto;
    padding-top: 2rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.6);
  }
  #container::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100vw; /* required */
    height: 350px; /* required */
    background-size: cover;
    background-position: right bottom;
    background-repeat: no-repeat;
    clear: both;
    background-position: right bottom;
    z-index: -1;
  }
  #imgcontainer {
    grid-column: 1/-1;
    grid-row: 1/2;
    justify-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  body {
    justify-content: space-between;
  }
  #wrapper {
    min-height: calc(100vh - 50px);
  }
  footer {
    position: static;
  }
  .trenner {
    padding: 1rem 0;
    width: 65%;
  }
  address {
    padding-bottom: 2rem;
  }
}
@media (max-width: 400px) {
  html {
    font-size: 12px;
  }
  #logo {
    max-width: 50vw;
  }
  #phone img {
    max-width: 38vw;
  }
}/*# sourceMappingURL=aufbau.css.map */