@charset "UTF-8";
/* All fonts needed */
/* roboto-serif-regular - latin */
@font-face {
  font-display: swap;
  font-family: "RobotoSerif";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/roboto-serif-v13-latin-regular.woff2") format("woff2"), url("../fonts/roboto-serif-v13-latin-regular.ttf") format("truetype"); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* roboto-italic - latin */
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/roboto-v30-latin-italic.woff2") format("woff2"), url("../fonts/roboto-v30-latin-italic.ttf") format("truetype"); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* roboto-serif-800 - latin */
@font-face {
  font-display: swap;
  font-family: "RobotoSerif";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/roboto-serif-v13-latin-800.woff2") format("woff2"), url("../fonts/roboto-serif-v13-latin-800.ttf") format("truetype"); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* truculenta-200 - latin */
@font-face {
  font-display: swap;
  font-family: "Truculenta";
  font-style: normal;
  font-weight: 200;
  src: url("../fonts/truculenta-v22-latin-200.woff2") format("woff2"), url("../fonts/truculenta-v22-latin-200.ttf") format("truetype"); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* truculenta-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Truculenta";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/truculenta-v22-latin-regular.woff2") format("woff2"), url("../fonts/truculenta-v22-latin-regular.ttf") format("truetype"); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* Alle Variablen*/
:root {
  /* Farben*/
  --CBgr: #fafaff;
  --CFirma: rgb(0, 0, 67);
  --CFirma-light: #000099;
  --CGrau: rgb(237, 237, 237);
  --CSilber: rgb(241 241 241);
  --CDunkel: rgb(19, 19, 19);
  --CB-year: #1f435f;
  --CG-blau: (180deg, rgba(255,255,255,1) 0%, rgba(153,217,255,1) 100%);
  /* Schriften */
  --FTitle: Truculenta;
  --FText: RobotoSerif;
  /* Font size */
  --fs-xl: 3rem;
  --fs-800: 2.2rem;
  --fs-600: 1.5rem;
  --fs-400: 1.25rem;
}

@media (max-width: 800px) {
  :root {
    --fs-xl: 2.4rem;
    --fs-800: 1.8rem;
    --fs-600: 1.5rem;
    --fs-400: 1.1rem;
    --fs-300: 0.8rem;
  }
}
@media (max-width: 638px) {
  :root {
    --fs-xl: 2.4rem;
    --fs-800: 1.8rem;
    --fs-600: 1.5rem;
    --fs-400: 1.0rem;
    --fs-300: 0.8rem;
  }
}
/* Regeln für die Allgemeinheit */
*,
*::after,
*::before {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  background-color: var(--CBgr);
}

h1, h2, h3, h4, h5 {
  font-family: var(--FTitle);
  font-weight: 200;
  font-size: var(--fs-600);
  text-align: center;
  text-transform: uppercase;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

h1, h2 {
  font-size: var(--fs-800);
  margin-bottom: 0.5rem;
}

p {
  font-family: var(--FText);
  display: block;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

a {
  color: var(--CFirma);
  text-decoration: none;
  border-radius: 8px;
}

a:hover {
  background-color: var(--CFirma);
  color: var(--CGrau);
}

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

/* Regeln fürs vereinfachen */
.cfl {
  color: var(--CFirma-light);
}

.bold-title {
  font-weight: 400;
}

.bold-text {
  font-weight: 800;
}

.wrap-flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.col-flex {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
}

.c-flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bg-section {
  margin-top: max(10px, 5vh);
}

.t-pad {
  padding-left: 1rem;
}

.ta-l {
  text-align: left;
}

.ta-r {
  text-align: right;
}

.ta-c {
  text-align: center;
}

/* Regeln für die einzelnen Abschnitte */
.wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  max-width: 990px;
  margin: 0 auto;
  background-color: var(--CBgr);
}

.temp {
  display: flex;
}
.temp img {
  width: max(200px, 30%);
  margin: 0 auto;
}

/* HEADER */
header {
  min-height: 10rem;
  padding: 10px 0;
}

.header-wrapper {
  display: grid;
  grid-template-columns: 1fr 3fr 1fr;
  align-content: center;
}

.logo-header {
  z-index: 20;
  grid-area: 1/1/2/2;
  min-width: 100px;
  margin: 5px;
}
.logo-header img {
  width: 180px;
}

.header-h3 {
  font-size: var(--fs-xl);
}

.headline {
  grid-area: 1/2/2/3;
  align-self: center;
}

/* Navigation */
nav {
  grid-area: 1/3/2/4;
}

/* Links */
ul {
  display: flex;
  flex-direction: row;
  height: auto;
}
ul a {
  padding: 0 1rem;
}

li {
  list-style-type: none;
  margin-left: 0.25rem;
  padding: 0 0.5rem;
  border-radius: 10%;
}

.menu-point {
  display: flex;
  font-family: var(--FTitle);
  font-weight: 200;
  font-size: 1.5rem;
  margin-top: 0.5rem;
  text-transform: uppercase;
}

.bg-headline {
  margin-bottom: 1rem;
  font-family: var(--FTitle);
  font-size: var(--fs-xl);
  font-weight: 200;
  text-align: center;
  text-transform: uppercase;
}

.h-line {
  z-index: 5;
  width: 100%;
  height: 2px;
  grid-area: 1/1/2/4;
  align-self: center;
  background-color: var(--CFirma-light);
}

.introduction {
  width: 100%;
  margin-bottom: 3rem;
}
.introduction h1 {
  width: 100%;
  margin-bottom: 2rem;
}

.introduction-text {
  font-family: var(--FText);
  font-size: var(--fs-400);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem 1rem;
}
.introduction-text p {
  margin-bottom: 1rem;
}

.i-text {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-column: 2/span 2;
}
.i-text p {
  padding: 0 6rem;
  margin: auto;
  text-align: center;
}

.i-box {
  display: grid;
  grid-template-columns: subgrid;
}

.i-intro {
  grid-column: 1/4;
}

.i-angebot {
  grid-column: 1/4;
}
.i-angebot .i-text {
  grid-column: 1/3;
}
.i-angebot .indroduction-img {
  grid-column: 3/4;
}

.i-planung {
  grid-column: 1/4;
}

.i-kontakt {
  grid-column: 1/4;
}
.i-kontakt .i-text {
  grid-column: 1/3;
}
.i-kontakt .indroduction-img {
  grid-column: 3/4;
}

.i-partner {
  grid-column: 1/4;
}

.indroduction-img {
  width: 100%;
}
.indroduction-img img {
  width: 100%;
  border-radius: 5px;
}

.zierde {
  margin: 0 auto;
  width: 100%;
  height: 2px;
  margin-top: 4rem;
  background-color: var(--CFirma-light);
}
.zierde img {
  width: 100%;
}

/* PRODUKTE*/
.products {
  width: 100%;
  margin: 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.card {
  display: grid;
  padding: 0.2em;
  border: solid 2px;
  border-radius: 8px;
  background-color: var(--CSilber);
  color: var(--CFirma);
}
.card img {
  width: 100%;
  border-radius: 5px;
}
.card p {
  padding: 0.5rem 0.2rem;
}

.card-pic {
  position: relative;
}

.card-pic:hover .b-year {
  opacity: 100%;
}

.b-year {
  z-index: 4;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding: 0.75rem 1rem;
  opacity: 0%;
  transition: 0.5s ease;
  color: var(--CB-year);
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(153, 217, 255) 100%);
  overflow: hidden;
  font-family: var(--FText);
  text-align: center;
  vertical-align: middle;
}

.card-text {
  background-color: var(--CBgr);
  color: var(--CFirma);
  text-align: center;
}

.hl-card {
  /* margin: 1rem 0; */
  padding: 5px;
  font-family: var(--FTitle);
  font-size: var(--fs-800);
  text-transform: uppercase;
  border-radius: 10px;
}

.hl-angebot {
  flex-flow: nowrap;
  margin-bottom: 2rem;
}
.hl-angebot h2 {
  margin-top: 0%;
  margin-bottom: 0%;
  margin-left: 2rem;
  margin-right: 2rem;
}

.hl-img {
  width: 30%;
}

.hl-img-right {
  transform: scaleX(-1);
}

.angebot-img {
  width: 30%;
}
.angebot-img img {
  width: 100%;
  border-radius: 15px;
}

.text-angebot {
  width: 60%;
  margin: 0 auto;
  font-family: var(--FText);
  font-size: var(--fs-400);
}
.text-angebot p {
  margin-bottom: 1rem;
}

/* FOOTER */
.f-wrapper {
  width: 100%;
  margin-bottom: 0.5rem;
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: var(--CFirma);
  color: var(--CGrau);
  border-radius: 5px;
}
.f-wrapper a {
  color: var(--CBgr);
}

.f-info {
  font-family: var(--FText);
  font-size: var(--fs-400);
  display: grid;
  grid-template-columns: 1fr 2fr 2fr;
  gap: 1rem;
}

.f-logo {
  grid-area: 1/1/3/2;
}
.f-logo img {
  max-height: 130px;
  margin: 0 auto;
}

.f-adress {
  grid-area: 1/2/2/4;
}

.f-tel {
  display: none;
}
.f-tel a {
  margin: auto 0;
}
.f-tel img {
  height: 80%;
  margin: auto auto;
}

.f-mail {
  z-index: 4;
  grid-area: 2/3/3/4;
}
.f-mail a {
  margin: 0 auto;
}
.f-mail img {
  margin: 0 auto;
  height: 44px;
}

.f-contact {
  grid-area: 2/2/3/4;
  display: flex;
  flex-flow: row;
  flex-wrap: nowrap;
}

.fc-daten {
  padding-left: 1rem;
}

/* Styles für die Impressum Seite */
.impressum {
  align-items: center;
}

.impressum-text {
  width: 70%;
  justify-self: center;
}
.impressum-text p {
  -webkit-margin-before: 1rem;
          margin-block-start: 1rem;
  -webkit-margin-after: 1rem;
          margin-block-end: 1rem;
}

@media (max-width: 800px) {
  .wrapper {
    width: 90%;
  }
  .logo-header img {
    width: 140px;
  }
  nav {
    align-self: center;
  }
  .menu-point {
    flex-direction: column;
  }
  .menu-point li {
    margin-bottom: 0.5rem;
  }
  .introduction-text {
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }
  .i-text p {
    padding: 0;
  }
  .i-box {
    display: grid;
  }
  .i-intro {
    grid-column: 1/3;
  }
  .i-angebot {
    grid-column: 1/3;
  }
  .i-angebot .i-text {
    grid-column: 1/2;
  }
  .i-angebot .indroduction-img {
    grid-column: 2/3;
  }
  .i-planung {
    grid-column: 1/3;
  }
  .i-kontakt {
    grid-column: 1/3;
  }
  .i-kontakt .i-text {
    grid-column: 1/2;
  }
  .i-kontakt .indroduction-img {
    grid-column: 2/3;
  }
  .i-partner {
    grid-column: 1/4;
  }
  .indroduction-img {
    width: 100%;
    margin: auto 0;
  }
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  card img {
    margin: auto;
  }
  /* Styles für die Impressum Seite */
  .impressum-text {
    width: 100%;
  }
  .f-mail {
    grid-area: 1/3/3/4;
  }
}
@media (max-width: 638px) {
  .wrapper {
    width: 90%;
  }
  .logo-header {
    /* order: 1; */
  }
  .logo-header img {
    width: 100px;
  }
  .header-h3 {
    font-size: var(--fs-600);
  }
  .headline {
    width: 100%;
  }
  nav {
    align-self: center;
    /* order: 1; */
  }
  .menu-point {
    width: 100%;
    flex-direction: column;
  }
  .h-line {
    display: none;
  }
  h2 {
    font-size: var(--fs-800);
  }
  .introduction {
    margin-bottom: 1rem;
  }
  .introduction-text {
    width: 100%;
    grid-template-columns: 1fr;
  }
  .i-box {
    display: grid;
    gap: 1.5rem;
  }
  .i-intro {
    grid-column: 1/2;
  }
  .i-angebot {
    grid-column: 1/2;
  }
  .i-angebot .i-text {
    grid-column: 1/2;
    order: 1;
  }
  .i-angebot .indroduction-img {
    grid-column: 2/3;
  }
  .i-planung {
    grid-column: 1/2;
  }
  .i-planung .i-text {
    grid-column: 1/2;
  }
  .i-planung .indroduction-img {
    /* display: none; */
  }
  .i-kontakt {
    grid-column: 1/2;
  }
  .i-kontakt .i-text {
    grid-column: 1/2;
    order: 2;
  }
  .i-kontakt .indroduction-img {
    order: 1;
    width: 100%;
  }
  .i-partner {
    grid-column: 1/2;
  }
  .i-text p {
    padding: 0;
    text-align: left;
  }
  .zierde {
    width: 100%;
    margin-top: 1.5rem;
  }
  .products {
    margin: 0;
  }
  .cards {
    margin: 0 auto;
    grid-template-columns: 1fr;
  }
  .card {
    width: 100%;
  }
  .angebot-img {
    order: 2;
    width: 100%;
    margin-bottom: 2rem;
  }
  .text-angebot {
    order: 1;
    width: 100%;
  }
  .f-info {
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
  }
  .f-logo {
    grid-area: 2/2/3/3;
  }
  .f-logo img {
    width: 7rem;
  }
  .f-adress {
    grid-area: 1/1/2/4;
    width: 100%;
    text-align: center;
  }
  .f-symbole {
    order: 3;
    flex-direction: row;
    align-items: center;
    width: 100%;
  }
  .f-tel {
    display: block;
    grid-area: 2/1/3/2;
    align-self: center;
  }
  .f-tel img {
    width: 2rem;
  }
  .f-mail {
    grid-area: 2/3/3/4;
  }
  .f-mail img {
    width: 3rem;
    height: 100%;
  }
  .f-contact {
    grid-area: 3/1/4/4;
    justify-content: center;
    width: 100%;
  }
}/*# sourceMappingURL=style01.css.map */