@charset "utf-8";
/* #region ..... set up basic page resets .........*/
@view-transition {
  navigation: auto;
}
::view-transition-group(root) {
  animation-duration: 2s;
}
:root {
  --header-color: #074066;
}
body {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  grid-template-columns: 1fr;
  text-rendering: optimizeLegibility;
  color: rgb(37, 37, 37);
  overflow-x: hidden;
}

html {
  height: 100vh;
  height: 100svh;
  font-family: system-ui, sans-serif;
  line-height: 1.2rem;
}
* {
  box-sizing: border box;
}
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
li,
article,
figcaption,
figure,
footer,
header,
menu,
nav,
section,
summary,
time,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

img,
picture {
  max-width: 100%;
  display: block;
  height: auto;
  max-height: 100%;
  font-style: italic;
}
/* #endregion ..... set up basic page resets .........*/
/* #region -- set up text items --- */
p,
ul {
  font-size: 1rem;
  color: rgb(47, 46, 46);
  font-weight: 400;
  text-wrap: pretty;
  line-height: 1.7rem;
  margin-bottom: 0.3rem;
}
.fixed-header p,
a {
  color: white;
}
.footer p,
a {
  color: white;
}
ul {
  margin-left: 2rem;
}
p,
li {
  text-wrap: pretty;
}
h1,
h2,
h3 {
  color: black;
  text-wrap: balance;
}

h1 {
  font-size: 1.5rem;
  line-height: 2rem;
  max-width: 50ch;
  font-weight: 700;
}
h2 {
  font-size: 1.4rem;
  line-height: 1.7rem;
  font-weight: 600;
}
h3 {
  font-size: 1.2rem;
  line-height: 2rem;
  font-weight: 600;
}

.main-wrapper a {
  text-decoration: none;
  color: brown;
}
/* #endregion -- set up text items --- */

/* #region -- utility classes--- */
.space1 {
  margin-bottom: 1rem;
}
.space2 {
  margin-bottom: 2rem;
}
.br {
  border: red solid thin;
}
.bb {
  border: blue solid thin;
}
.space1 {
  margin-bottom: 1rem;
}
/* #endregion -- utility classes--- */
/* #region page layout */
.fixed-header {
  position: sticky;
  top: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  z-index: 999;
width: 100%;
  color: whitesmoke;
  background-color: var(--header-color);
  max-height: fit-content;
}
/*--#region set up for desktop large screens */

.main-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 98dvw;
  grid-area: 1/1/2/-1;
  margin-inline: auto;
  background-color: white;
  overflow-y: visible;
}
.footer {
  display: flex;
  grid-area: 2/1/3/-1;
  flex-direction: column;
  padding-top: 1rem;
  height: fit-content;
  justify-content: space-around;
  padding-bottom: 20px;
  color: whitesmoke;
  background-color: var(--header-color);
}

/*--#endregion set up for desktop large screens */
/* #endregion page layout */

/* #region Nav */
/* #region  navigation desktop */
.arrowicon {
  display: inline-block;
  transform: rotate(90deg);
  margin-left: 5px;
  vertical-align: middle;
}
.arrowicon-up {
  display: inline-block;
  font-size: 2rem;
  transform: rotate(-90deg);
  vertical-align: middle;
}
.nav-list {
  display: flex;
  min-width: 750px;
  margin: 0px 3rem 0px 0px;
  max-height: 5rem;
  align-items: center;
  justify-content: space-between;
  z-index: 1600;
}
nav ul {
  list-style: none;
  align-content: right;
  font-style: normal;
}
.nav-list li {
  line-height: 2rem;
  position: relative;
  margin: 0px auto;
}
.nav-list a {
  display: block;
  color: white;
  letter-spacing: 0.5px;
  padding: 0 1rem;
  margin: 1rem 0;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  transition: color 650ms;
  text-decoration: none;
}
.nav-list a:hover {
  color: red;
}

.nav-list li:has(a[href="kontakt.html"]) a {
  background-color: #1f28da;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  border: thin solid black;
  color: white;
  transition: background-color 300ms;
}

.nav-list li:has(a[href="kontakt.html"]) a:hover {
  background-color: #c9302c;
  color: white;
}

li.move-right {
  margin: auto 50px auto auto;
  line-height: initial;
}
nav svg {
  fill: white;
}
#sidebar-active {
  display: none;
}
.open-sidebar-button,
.close-sidebar-button {
  display: none;
}
/* #endregion navigation desktop */
/* #region  navigation Mobile */
@media screen and (max-width: 1000px) {
  nav {
    height: fit-content;
    background-color: var(--header-color);
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  * {
    margin: 0;
    padding: 0;
  }
  .links-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 10;
    width: 90%;
    height: 100vh;
    background-color: var(--header-color);
    box-shadow: -5px 0 5px rgba(0, 0, 0, 0.25);
    transition: right 0.75s ease-out;
    overflow-y: auto;
  }
  nav a {
    box-sizing: border-box;
    height: auto;
    width: 100%;
    padding: 20px 30px;
    justify-content: flex-start;
  }
  .open-sidebar-button,
  .close-sidebar-button {
    padding: 20px;
    display: block;
    position: relative;
    z-index: 11;
  }
  #sidebar-active:checked ~ .open-sidebar-button {
    display: none;
  }
  .close-sidebar-button {
    display: none;
  }
  #sidebar-active:checked ~ .links-container .close-sidebar-button {
    display: block;
  }
  #overlay {
    display: none;
    pointer-events: none;
  }
  #sidebar-active:checked ~ .links-container {
    right: 0;
  }
  #sidebar-active:checked ~ #overlay {
    display: block;
    pointer-events: auto;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    overflow: hidden;
  }
  .menu-icons {
    display: block;
  }
  .nav-list {
    display: none !important;
    flex-direction: column;
    position: fixed !important;
    top: 60px !important;
    right: -100% !important;
    z-index: 10 !important;
    width: 90% !important;
    height: auto !important;
    max-height: calc(100vh - 60px) !important;
    margin: 0 !important;
    padding: 20px 0 !important;
    align-items: stretch !important;
    background-color: var(--header-color) !important;
    overflow-y: auto !important;
    transition: right 0.75s ease-out !important;
    min-width: auto !important;
    max-height: none !important;
    justify-content: flex-start !important;
  }
  #sidebar-active:checked ~ .nav-list {
    display: flex !important;
    right: 0 !important;
  }
  .nav ul {
    list-style: none;
    align-content: left;
    width: 100%;
  }
  .nav-list > li {
    line-height: 1.5rem;
    margin: 0;
    padding: 0;
    width: 100%;
    list-style: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-list a {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
    color: white;
    pointer-events: auto;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
  }

  .nav-list li:hover {
    opacity: 1;
    visibility: visible;
    max-height: initial;
    background-color: rgba(255, 255, 255, 0.1);
  }
  li.move-right {
    margin: 0 auto 0 0;
    line-height: initial;
  }

  .ion-md-close {
    display: none;
  }
  .nav-align {
    text-align: left;
  }

  .homelink {
    margin-left: 0;
    min-width: fit-content;
  }
}
/* #endregion of mobile navigation */
/* #endregion Nav */

/* #region footer */
.footer-links {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  padding: 0 1rem;
}
.footer-links a {
  color: white;
  text-decoration: none;
}
.footer-text {
  text-align: center;
  margin-bottom: 0.5rem;
  padding: 0 1rem;
  word-wrap: break-word;
}
.footer-text p {
  max-width: 100%;
  overflow-wrap: break-word;
}
/* #endregion footer */

/* #region content */
.content-wrapper {
  display: grid;
  background-color: white;
  width: 96dvw;
  margin: 0 1vw 0 1vw;
}
.header-img {
  min-width: 100%;
  justify-items: center;
}
.text80 {
  max-width: 80ch;
  margin: 1rem auto;
}
.zweicol {
  display: flex;
  flex-direction: row;
}
.halbpage {
  width: 48%;
  margin-right: 4%;
}
@media screen and (max-width: 800px) {
  .zweicol {
    flex-direction: column;
  }
  .halbpage {
    width: 100%;
    margin-right: 0;
  }
}
/* #region daten schutz ----------------*/
.erklarung {
  display: grid;
  grid-template-rows: auto;
  max-width: 120ch;
  margin: 2rem auto;
}
.erk1 {
  display: block;
  grid-area: 1/1/2/2;
}
.erk2 {
  display: block;
  grid-area: 2/1/3/2;
}
.erk3 {
  display: block;
  grid-area: 3/1/4/2;
}
.erk4 {
  display: block;
  grid-area: 4/1/5/2;
}
.erk5 {
  display: block;
  grid-area: 5/1/6/2;
}
.erk6 {
  display: block;
  grid-area: 6/1/7/2;
}
.erk7 {
  display: block;
  grid-area: 7/1/8/2;
}
/* #endregion daten schutz ----------------*/
/* #endregion content */
/* #region qualifications */
.qualifications {
  display: flex;
  flex-direction: column;
  max-width: 90dvw;
}
.qual {
  display: flex;
  flex-direction: row;
  max-width: 100ch;
  border-bottom: 1px solid black;
  margin: 1rem auto 0 auto;
  padding-bottom: 1rem;
  gap: 2rem;
}
.qualart {
  display: block;
  width: 100ch;
  text-wrap: pretty;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media screen and (max-width: 800px) {
  .qual {
    display: flex;
    flex-direction: column;
    max-width: 95%;
    margin-inline: auto;
  }
  .qualart {
    display: block;
    width: min(100ch, 100%);
    text-wrap: pretty;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

/* #endregion qualifications */

/* #region kontakt2 specific */
.formholder{
  max-width: 600px;
  width: 100%;
}
      .kontakt2box {
          display: flex;
          flex-direction: column;
          align-items: center;
          text-align: center;
      }
      .kontakt2box2 {
          display: flex;
          flex-direction: row;
          align-items: center;
          text-align: center;
          gap: 2rem;
          justify-content: center;
      }
      @media screen and (max-width: 800px){
        .kontakt2box2 {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1rem;
        }
      }
      .kc2 {
          display: flex;
          flex-direction: column;
          align-items: center;
          text-align: center;
      }
      .kc2r {
          display: flex;
          flex-direction: column;
          align-items: center;
          text-align: center;
      }
      .kc2l {
          display: flex;
          flex-direction: column;
          align-items: center;
          text-align: center;
      }
      .kc2all {
          display: flex;
          flex-direction: row;
          align-items: center;
          text-align: center;
          gap: 2rem;
      }
/* #endregion kontakt2 specific */

