/* roboto-slab-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/roboto-slab-v25-latin-regular.woff2") format("woff2"),
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
    url("../fonts/roboto-slab-v25-latin-regular.ttf") format("truetype");
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* roboto-slab-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/roboto-slab-v25-latin-700.woff2") format("woff2"),
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
    url("../fonts/roboto-slab-v25-latin-700.ttf") format("truetype");
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* roboto-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/roboto-v30-latin-regular.woff2") format("woff2"),
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
    url("../fonts/roboto-v30-latin-regular.ttf") format("truetype");
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* roboto-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/roboto-v30-latin-700.woff2") format("woff2"),
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
    url("../fonts/roboto-v30-latin-700.ttf") format("truetype");
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* Definiere eine CSS-Variable */
:root {
  --textprimary: #1f2224;
  --white: #ffffff;
  --buttongradient: linear-gradient(180deg, #009adc 0%, #2165b2 100%);
  --buttonHover: #009adc;
  --font-size: 1em;
  --highlight: #5e10b1;
  --grey: #f8f8f8;
}

main {
  min-height: 90vh;
}

body {
  font-size: var(--font-size);
  background-color: var(--white);
  color: var(--textprimary);
  font-family: "Roboto", Helvetica, sans-serif;
  font-style: normal;
  font-weight: 400;
}

html,
body {
  margin: 0;
  padding: 0;
}

picture {
  width: 100%;
  max-width: 1460px;
  margin: 0 auto;
  margin-bottom: -4px;
}

@media (min-width: 1460px) {
  #header>picture>img {
    border-radius: 8px;
  }
}

#header>picture>img {
  width: 100%;
  height: auto;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  img picture {
    max-width: 100%;
    height: auto;
    width: auto;
  }

  img {
    max-width: 100%;
    height: auto;
    width: auto;
  }
}

.breadcrumb {
  list-style: none;
  padding: 0;
  display: flex;
  font-size: 1rem;
  justify-content: center;
}

.breadcrumb-item {
  margin-right: 10px;
}

.breadcrumb-item:last-child {
  margin-right: 0;
}

.breadcrumb-item a {
  text-decoration: none;
  background-color: var(--grey);
  padding: 8px 12px;
  border-radius: 8px;
}

.breadcrumb-item a:hover {
  text-decoration: none;
  background-color: var(--highlight);
  color: var(--grey);
  padding: 8px 12px;
  border-radius: 8px;
}

.breadcrumb-item a:after {
  content: ">";
  margin-left: 1em;
}

h1 {
  font-family: Roboto Slab;
  font-size: 3em;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  max-width: 800px;
}

h2 {
  font-family: Roboto Slab;
  font-size: 2.25em;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  max-width: 800px;
}

h3 {
  font-family: Roboto Slab;
  font-size: 1.5em;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
h4 {
  font-family: Roboto Slab;
  font-size: 1.25em;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

p,
.text {
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  max-width: 800px;
  text-align: left;
  width: 100%;
  margin-top: 0px;
  margin-bottom: 0.5em;
  font-size: 1.25em;
}

.left {
  text-align: left;
}

li {
  margin-top: 0.75em
}

.mb1 {
  margin-bottom: 1em;
}

a {
  text-decoration: none;
  color: var(--highlight);
  transition: all 0.3s;
  cursor: pointer;
}

.card {
  cursor: pointer;
}

nav {
  display: flex;
  height: 60px;
  padding: 8px 24px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}

nav ul {
  display: flex;
  align-items: center;
  gap: 16px;
}

nav ul {
  list-style: none;
}

nav ul a {
  color: var(--textprimary);
  font-family: Roboto;
  font-size: 0.9em;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;

  display: flex;
  padding: 8px 12px;
  align-items: center;
  gap: 8px;

  border-radius: 4px;
  background: var(--white);
}

nav ul a:hover {
  color: var(--white);
  background: var(--highlight);
}

.button {
  border-radius: 4px;
  color: var(--white);
  background: var(--buttongradient);
  transition: transform 0.2s;
}

#header {
  display: flex;
  gap: 0 px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}

#header .gradient {
  display: flex;

  align-items: flex-start;
  align-self: stretch;
  background: linear-gradient(135deg, #0087be 0%, #2b4b70 71.88%);
}

#header .gradient h2 {
  color: var(--inverse, #fff);
  text-shadow: 0px 3px 8px rgba(0, 82, 160, 0.6);
  font-family: Roboto Slab;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 24px;
}

@media (min-width: 768px) {
  #header .gradient h2 {
    display: none;
  }
}

section {
  text-align: center;
  margin: 0 auto;
}

.focus {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0px;
  align-self: stretch;
}

.focusTop {
  display: flex;
  padding: 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 24px 24px 0px 0px;
  background: #f8f8f8;
  margin: 0 100px;
  width: 800px;
}

.focusTop H3 {
  display: flex;
  padding: 24px;
}

.content {
  display: flex;
  padding: 60px 24px 0px 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0px;

  align-self: stretch;
}

.cardSection {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
  z-index: 100;
  border-radius: 24px;
}

.cardSectionSmall {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
  z-index: 100;
  border-radius: 24px;
  padding: 24px;
  margin-top: 120px;
}


.grey {
  background: #f8f8f8;
}

.card {
  display: flex;
  padding: 16px;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1 0 0;
  align-self: stretch;
  align-content: flex-end;
  border-radius: 16px;
  background: var(--inverse, #fff);
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.1),
    0px 0px 40px 0px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
  max-width: 320px;
  cursor: pointer;
}

.card:hover {
  transform: scale(1.05);
}

.card h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25em;
}

.card p {
  display: flex;
  justify-content: center;
  align-content: flex-start;

  font-size: 0.95em;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  color: #1f2224bf;
  text-align: center;
}

.cardSectionSmall .card {
  padding: 8px 32px 8px 0px;
  width: 300px;
  min-width: 300px;
  max-width: 300px;
  flex-direction: row;
  gap: 0px;
  justify-content: center;
  justify-content: center;
}

.cardSectionSmall .card img {
  width: 140px;
}

.cardSectionSmall h3 {
  font-size: 1.25em;
  text-align: left;
}

.branchenSchwerpunkt {
  display: flex;
  padding: 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 0px 0px 24px 24px;
  background: #f8f8f8;
  margin: 0 100px;
  width: 800px;
}

.branchenSchwerpunkt p {
  color: var(--tex-primary, #1f2224);
  text-align: center;

  /* h2 */
  font-family: Roboto Slab;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 16px;
}

.branchenSchwerpunkt p span {
  color: var(--tex-primary, #1f2224);
  font-family: Roboto Slab;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

footer {
  margin-top: 80px;
  display: flex;
  padding: 40px 24px;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  background: #f8f8f8;
}

.col100 {
  text-align: left;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 24px;
}

.col50 {
  max-width: 450px;
}

.buttonBewerbung {
  display: inline-flex;
  padding: 16px 24px;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: var(--gradient,
      linear-gradient(165deg,
        #6700b8 0%,
        #7538bd 28%,
        #356dff 66%,
        #0ca0ff 82%,
        #00b0ff 100%));
  color: var(--inverse, #fff);
  font-family: Roboto;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-width: 0;
  transition: transform 0.2s;
  margin-top: 40px;
}

.buttonBewerbung:hover {
  transform: scale(1.05);
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.1),
    0px 0px 40px 0px rgba(0, 0, 0, 0.05);
}

.steps {
  display: flex;
  flex-direction: row;
  max-width: 800px;
  border-radius: 24px;
  align-items: center;
  padding-right: 24px;
  gap: 4em;
}

.steps img {
  width: 100%;
  max-width: 300px;
}

.stepscontent {
  width: 100%;
  text-align: left;
}

.stepscontent h4 {
  font-size: 1.8rem;
}

.stepsright {
  flex-direction: row-reverse;
}


#toggleImage {
  display: none;
}

.left h4 {
  max-width: 800px;
  width: 100%;
  text-align: left;
  font-family: Roboto Slab;
  font-size: 1.4em;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 24px 0px 8px 0px;
}

@media (max-width: 1024px) {
  .cardSection {
    /*    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  */
    border-radius: 0px;
    justify-content: center;
    justify-items: center;
    margin: 0;
    padding: 24px;
  }

  .card {
    max-width: 100%;
  }

  .focusTop {
    margin: 0px;
    padding: 24px 24px 0px 24px;
    align-self: stretch;
    width: auto;
  }

  .focusTop h3 {
    margin: 0px;
    padding: 0;
  }

  .branchenSchwerpunkt {
    margin: 0px;
    align-self: stretch;
    width: auto;
  }

  .branchenSchwerpunkt p {
    margin: 0px;
    padding: 0px 24px 24px 24px;
  }

  .card p {
    height: auto;
  }


}

@media (max-width: 767px) {

  h1 {
    font-size: 2em;
  }

  h2 {
    font-size: 1.8em;
  }

  .cardSection {
    display: flex;
    flex-direction: column;
    margin: 0px;
  }

  .focus {
    background: #f8f8f8;
    border-radius: 24px;
    padding: 0px;
  }

  .focusTop {
    margin: 0px;
    padding: 24px 24px 0px 24px;
  }

  .focusTop h3 {
    margin: 0px;
    padding: 0;
  }

  .branchenSchwerpunkt {
    margin: 0px;
  }

  .branchenSchwerpunkt p {
    margin: 0px;
    padding: 0px 24px 24px 24px;
  }

  .col100 {
    grid-template-columns: repeat(1, 1fr);
  }

  #toggleImage {
    display: block;
    padding: 12px;
    cursor: pointer;
  }

  #toggleImage:hover {
    background-color: #f8f8f8;
    border-radius: 8px;
  }

  header {
    min-height: 76px;
  }

  nav {
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    background-color: var(--white);
    margin: 0;
    padding: 0px;
  }

  nav .navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    z-index: 100;
    background-color: white;
  }

  .collapsed {
    margin-top: -200px;
    transition: all 0.3s;
    z-index: 99;
  }

  .collapsed ul {
    background-color: var(--white);
    box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.1),
      0px 0px 40px 0px rgba(0, 0, 0, 0.05);
    opacity: 0;
  }

  .expanded {
    display: block;
    margin-top: 0px;
  }

  .expanded ul {
    opacity: 1;
    display: flex;
  }

  #divMenu ul {
    flex-direction: column;
    align-content: flex-start;

    align-items: stretch;
    margin: 0;
    padding: 16px 16px;
    gap: 8px;
  }

  #divMenu a {
    font-size: 1.2em;
    padding: 16px 12px;
  }

  .steps {
    flex-direction: column;
    padding: 16px 16px 16px 16px;
    text-align: center;
  }



  .left h4 {
    text-align: center;
  }

}

@keyframes blend {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes blendTransform {
  0% {
    opacity: 0;
    transform: translatey(5%);
  }

  100% {
    opacity: 1;
    transform: translatey(0);
  }
}

picture,
.gradient {
  /* This section calls the slideInFromLeft animation we defined above */
  animation: 300ms ease-out 0s 1 blend;
}

.content {
  animation: 0.3s ease-out 0s 1 blendTransform;
}

.content p {
  animation: 0.8s ease-out 0s 1 blendTransform;
}

.mtop {
  margin-top: 8rem
}

.image {

  max-width: 1200px;
  margin: 5em auto;
  width: auto;
  width: 100%;
}


.roles {
  gap: 0px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  max-width: 300px;
  align-items: center;
  align-content: center;
}

.roles img {
  max-width: 250px;
  height: auto;
  width: auto;
}

.roles h4 {
  text-align: center;
  font-size: 1.4rem;
}

.roles p {
  text-align: center;
}

ul {
  list-style-image: url('assets/images/bullet.svg');
  line-height: 200%;
  margin: 24px;
  font-size: 1.25rem;
  max-width: 700px;


}
.bullets p{
  text-align: center;
}

.bulletlist {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
}
.bulletlist li{
  display: block;
  background: var(--grey);
  padding: 4px 24px;
  margin-right: 16px;
  border-radius: 16px;
}
.video{padding: 24px;}
video{width: 100%; max-width: 1024px;border-radius: 24px;}