/* Navigation */
#desktop {
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 0.5rem 0;
  background: #fff;
  background: linear-gradient(180deg, white 0%, rgba(255, 255, 255, 0) 100%);
  transition: top 500ms;
}

.navigation {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
}
.navigation > div {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1600px) {
  .navigation > div {
    gap: 3rem;
  }
}
.navigation .btn-search {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 0.8rem 1.25rem 0.65rem 1.25rem;
  border-radius: 1.25rem;
}
.navigation a {
  position: relative;
  text-align: center;
}
.navigation a.contact {
  border: 1px solid #08303a;
}
.navigation a.active::after {
  content: "";
  width: 100%;
  height: 3px;
  border-radius: 3px;
  left: 0;
  bottom: -0.5rem;
  position: absolute;
  background-color: #009acb;
}

button.menu-burger {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 33px;
  height: 100%;
}
button.menu-burger svg {
  display: block;
}

#mobile-menu {
  z-index: 100;
  position: fixed;
  right: 0;
  left: 0;
  bottom: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow-y: scroll;
  margin: 0;
  padding-bottom: 4rem;
  background-color: #08303a;
  transition: transform 0.3s ease-in-out;
  transform: translateX(100%);
}
#mobile-menu:focus-within {
  transform: translateX(0%);
  box-shadow: rgba(42, 160, 188, 0.08) 0px 12px 36px;
}
#mobile-menu .header {
  display: flex;
  width: 100%;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
}
#mobile-menu ul {
  list-style: none;
  margin-bottom: 2rem;
}
#mobile-menu ul li {
  padding: 1rem;
}
#mobile-menu .btn-md {
  display: flex;
  justify-content: center;
  gap: 1rem;
  width: 100%;
}
@media print {
  #mobile-menu {
    display: none;
  }
}

/* Fingerprint */
@keyframes myOrbit {
  from {
    transform: rotate(0deg) translateX(0px) rotate(0deg);
  }
  to {
    transform: rotate(3600deg) translateX(0px) rotate(-720deg);
  }
}
@keyframes orbit {
  0% {
    transform: rotateX(-35deg) rotateZ(0deg);
  }
  25% {
    transform: rotateX(5deg) rotateZ(90deg);
  }
  50% {
    transform: rotateX(-30deg) rotateZ(180deg);
  }
  75% {
    transform: rotateX(40deg) rotateZ(270deg);
  }
  100% {
    transform: rotateX(-35deg) rotateZ(360deg);
  }
}
#impact-fingerprint {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2000px;
  display: block;
  overflow-x: hidden;
  overflow-y: visible;
}
#impact-fingerprint .fingerprint {
  position: absolute;
  height: auto;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}
@media (min-width: 1200px) {
  #impact-fingerprint .fingerprint {
    width: 80%;
  }
}
#impact-fingerprint .gradient {
  position: absolute;
  left: 50%;
  top: 400px;
  width: 100%;
  height: auto;
  transform: translate(-50%, -50%);
}
@media (min-width: 1200px) {
  #impact-fingerprint .gradient {
    width: 60%;
  }
}
#impact-fingerprint .gradient img {
  animation: orbit 12s linear infinite;
}

/* Suche im Header */
#cta {
  z-index: 1;
  position: absolute;
  bottom: 0;
  right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 160px;
  background-color: #08303a;
  border-radius: 200px;
  transform: translateY(11rem) rotateZ(5deg);
}
#cta p {
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  padding: 20px 30px;
}

canvas {
  position: absolute;
  width: 100vw;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 3s ease-out;
}

header.search {
  z-index: 1;
  position: relative;
  padding-top: 4rem;
}
header.search h1 {
  margin-bottom: 3rem;
  text-align: center;
}
header.search .btn-search {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding: 0.8rem 1.25rem 0.65rem 1.25rem;
  border-radius: 1.25rem;
}

/* Header mit Bild */
.image-header .headline {
  position: relative;
}
.image-header .headline h1 {
  z-index: 2;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}
.image-header .image-wrapper {
  z-index: 1;
  position: relative;
  height: 400px;
  width: 100%;
  margin-top: 8rem;
  overflow: hidden;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
@media (min-width: 768px) {
  .image-header .image-wrapper {
    margin-top: 4rem;
  }
}
@media (min-width: 992px) {
  .image-header .image-wrapper {
    height: 800px;
  }
}
.image-header .image-wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.image-header .image-wrapper::before {
  z-index: 1;
  content: "";
  position: absolute;
  width: 100%;
  height: 4rem;
  background: linear-gradient(180deg, #f7fafc 0%, rgba(247, 250, 252, 0) 100%);
}
@media (min-width: 768px) {
  .image-header .image-wrapper::before {
    height: 8rem;
  }
}

/* Header mit Video */
.video-header .headline {
  position: relative;
}
@media (min-width: 992px) {
  .video-header .headline h1 {
    z-index: 2;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
  }
}
.video-header .image-wrapper {
  z-index: 1;
  position: relative;
  overflow: hidden;
}
@media (min-width: 992px) {
  .video-header .image-wrapper {
    margin-top: 10rem;
  }
}
.video-header .image-wrapper video {
  width: 100%;
  height: auto;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.video-header .image-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4rem;
  background: linear-gradient(180deg, #f7fafc 0%, rgba(247, 250, 252, 0) 100%);
}
@media (min-width: 768px) {
  .video-header .image-wrapper::before {
    height: 8rem;
  }
}
.video-header .controls {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 1rem;
  margin-top: 1rem;
}
.video-header .controls button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  background-color: #299a96;
  color: #fff;
  border-radius: 1rem;
}
.video-header .controls button[aria-pressed=true] .muted,
.video-header .controls button[aria-pressed=true] .playing {
  display: block;
}
.video-header .controls button[aria-pressed=true] .unmuted,
.video-header .controls button[aria-pressed=true] .paused {
  display: none;
}
.video-header .controls button[aria-pressed=false] .muted,
.video-header .controls button[aria-pressed=false] .playing {
  display: none;
}
.video-header .controls button[aria-pressed=false] .unmuted,
.video-header .controls button[aria-pressed=false] .paused {
  display: block;
}
.video-header .controls button svg {
  display: block;
  height: 1rem;
  height: auto;
}
.video-header .controls button svg * {
  fill: #fff;
}

/* Footer */
footer {
  padding: 3rem 0 2rem 0;
  border-radius: 1.25rem 1.25rem 0 0;
}
@media (min-width: 992px) {
  footer {
    border-radius: 3.75rem 3.75rem 0 0;
  }
}
footer *,
footer .text p a {
  color: #fff;
}
footer svg {
  max-width: 100%;
}
footer .newsletter {
  grid-template-columns: 1fr auto;
  width: 100%;
  border: 1px solid #fff;
  margin-bottom: 1rem;
}
footer .legal {
  display: flex;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
  row-gap: 1rem;
  flex-wrap: wrap;
}

.social-links {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  height: auto;
}
.social-links a {
  display: block;
}

/* Suche nach Berufsgruppe */
.link-jobtype .illu {
  position: relative;
}
.link-jobtype .illu svg {
  position: absolute;
  right: -12px;
  bottom: -14px;
}
.link-jobtype h1 span {
  display: block;
}
@media (min-width: 768px) {
  .link-jobtype h1 span {
    display: initial;
  }
}
.link-jobtype h1 button {
  font-size: inherit;
  font-weight: inherit;
}
.link-jobtype h1 button[aria-selected=false] {
  color: rgba(8, 48, 58, 0.5);
}
.link-jobtype h1 button[aria-selected=false] svg {
  display: none;
}
.link-jobtype ul {
  justify-content: center;
}

/* IT-Experts */
.it-companies {
  position: relative;
}
.it-companies .svg {
  width: 150px;
  height: auto;
  position: absolute;
  left: 5%;
  top: 0;
  transform: translateY(-80%);
}
@media (min-width: 992px) {
  .it-companies .svg {
    width: 150px;
  }
}
@media (min-width: 1200px) {
  .it-companies .svg {
    left: 10%;
    width: 200px;
  }
}
.it-companies .container {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .it-companies .container {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.it-companies .image-wrapper {
  display: block;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 0 0 3rem 3rem;
}
.it-companies .image-wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (min-width: 992px) {
  .it-companies .image-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    border-radius: 0 3.75rem 3.75rem 0;
  }
}
@media (min-width: 1200px) {
  .it-companies .image-wrapper {
    width: 35%;
  }
}
@media (min-width: 1400px) {
  .it-companies .image-wrapper {
    width: 30%;
  }
}

/* Vorteile mit uns */
.benefits {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 1200px) {
  .benefits {
    background-size: contain;
  }
}
.benefits .headline .illu {
  position: relative;
}
.benefits .headline .illu svg {
  position: absolute;
  left: -20px;
  top: -30px;
}
.benefits picture img {
  margin-bottom: 4rem;
}
.benefits .cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .benefits .cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  .benefits .cards {
    margin-bottom: 0;
  }
}
.benefits .cards-column {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .benefits .cards-column:last-child {
    padding-top: 50%;
  }
}
.benefits .btn-row {
  margin-top: 2rem;
}
.benefits .card {
  display: flex;
  flex-direction: column;
  padding: 2.5rem 1.5rem;
  background-color: #fff;
}
@media (min-width: 768px) {
  .benefits .card {
    padding: 2.5rem;
  }
}
.benefits .card img {
  width: 3rem;
  height: auto;
  margin-bottom: 2rem;
}

/* Neueste Inserate */
.latest-jobs {
  overflow: hidden;
}
.latest-jobs .tns-ovh {
  overflow: visible;
}
.latest-jobs .tns-item {
  transition: opacity 1000ms cubic-bezier(0.075, 0.82, 0.165, 1) !important;
  transition: transform 200ms cubic-bezier(0.075, 0.82, 0.165, 1) !important;
}
.latest-jobs .tns-item:hover {
  transform: scale(1.05) !important;
}
.latest-jobs .tns-item[aria-hidden=true] {
  opacity: 0;
}
.latest-jobs .tns-slider {
  display: inline-flex;
  align-items: stretch;
}
.latest-jobs .card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  height: 100%;
  padding: 2.5rem 1.5rem;
}
@media (min-width: 992px) {
  .latest-jobs .card {
    padding: 2.5rem;
  }
}
.latest-jobs .card ul li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
}
.latest-jobs .card ul li:not(:last-child) {
  margin-bottom: 1rem;
}
.latest-jobs .controls {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  margin-top: 1.5rem;
}
@media (min-width: 576px) {
  .latest-jobs .controls {
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: initial;
  }
}
@media (min-width: 992px) {
  .latest-jobs .controls {
    margin-top: 3rem;
  }
}
.latest-jobs .controls a {
  justify-self: center;
  grid-column: 1/span 2;
}
@media (min-width: 576px) {
  .latest-jobs .controls a {
    grid-column: 2;
    grid-row: 1;
  }
}
.latest-jobs .controls button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  background-color: white;
  border-radius: 100%;
}
.latest-jobs .controls button:last-of-type {
  justify-self: flex-end;
}

/* Prozess */
.process {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 1400px) {
  .process {
    background-size: contain;
  }
}
.process h1 {
  margin-bottom: 3.5rem;
}
.process .card {
  padding: 2.5rem;
}
@media (min-width: 1200px) {
  .process .card {
    padding: 5rem;
  }
}
.process .card:not(:last-child) {
  margin-bottom: 2rem;
}
.process .card .index {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  padding-top: 5px;
  border-radius: 100%;
  background-color: #299a96;
  color: #fff;
}

/* Aktuelles / News */
.news {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 992px) {
  .news {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.news .card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 2.5rem 1.5rem;
  background-color: #f7fafc;
}
.news .card .tags {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .news .card {
    padding: 2.5rem;
  }
}
.news .info {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.news .btn-row {
  justify-content: center;
  margin-top: 2rem;
}

/* Kundenlogos / Logofolio */
.logofolio .carousel-slide {
  display: flex;
  gap: 2rem;
  overflow: hidden;
}
.logofolio .carousel-slide img {
  width: 8rem;
  mix-blend-mode: multiply;
  pointer-events: none;
  animation: scroll 60s linear infinite;
}
@media (min-width: 768px) {
  .logofolio .carousel-slide img {
    width: 10rem;
  }
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translatex(-1000%);
  }
}

/* Jobs bei Impact	*/
.impact-jobs img {
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .impact-jobs img {
    margin-bottom: 0;
  }
}
.impact-jobs .card {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 2.5rem;
  background-color: #fff;
}
.impact-jobs .card svg {
  grid-column: 2;
  grid-row: 1/span 3;
  align-self: center;
}
.impact-jobs .card:not(:last-child) {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .impact-jobs .card:not(:last-child) {
    margin-bottom: 2.5rem;
  }
}

/* Unsere Teams */
.our-teams {
  position: relative;
}
.our-teams .illu {
  position: absolute;
  top: -2rem;
  right: 0;
}
.our-teams .text {
  margin-top: 2rem;
}
.our-teams .accordion {
  width: 100%;
}
.our-teams .accordion button {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 2rem 0;
  padding-right: 0.25rem;
}
.our-teams .accordion button svg {
  transform: rotate(-90deg);
  transition: all 200ms ease-in-out;
}
.our-teams .accordion button[aria-expanded=false] svg {
  transform: rotate(90deg);
}
.our-teams .accordion button:hover .emoji {
  animation: shake 1000ms infinite;
  animation-timing-function: linear;
}
.our-teams .accordion .panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  border-bottom: 1px solid #08303a;
}
.our-teams .accordion .panel p {
  padding: 0rem 1rem 2rem 3rem;
}

@keyframes shake {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}
/* Kontakt */
.contact .image-wrapper {
  position: relative;
  height: 320px;
  width: 100%;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  overflow: hidden;
}
@media (min-width: 992px) {
  .contact .image-wrapper {
    height: 720px;
  }
}
.contact .image-wrapper img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.contact .content {
  padding: 1.5rem;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
@media (min-width: 992px) {
  .contact .content {
    padding: 6rem;
  }
}
.contact .address {
  padding: 2rem;
}
.contact .gradient {
  z-index: -1;
  position: absolute;
  top: 0;
  width: 100%;
}
/* Personio Actions */
.position .actions {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.position .actions .btn-md {
  width: 100%;
}
@media (min-width: 992px) {
  .position .actions .btn-md {
    width: auto;
  }
}
.position .text h1,
.position .text h2,
.position .text h3 {
  margin-top: 2rem;
}

/* Vincere and Personio Contact */
.impact-contact {
  top: 6rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;
}
.impact-contact .info {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 2rem 1.5rem 2rem;
  text-align: center;
}
@media (min-width: 1400px) {
  .impact-contact .info {
    align-items: flex-start;
    padding-right: calc(180px - 1rem);
    text-align: left;
  }
}
.impact-contact .info p a {
  color: #009acb;
}
.impact-contact .help {
  padding: 1rem 2rem;
}
.impact-contact picture {
  width: 180px;
  height: auto;
}
@media (min-width: 1400px) {
  .impact-contact picture {
    position: absolute;
    right: -1rem;
    top: -3rem;
    transform: translateY(0%);
  }
}

/* Impact Recruitment in Zahlen */
@media (min-width: 992px) {
  .statistics img {
    margin-top: 10%;
  }
}
.statistics .stats {
  padding: 2.5rem;
}
@media (min-width: 992px) {
  .statistics .stats {
    padding: 3.5rem 6rem;
  }
}
.statistics .stats h1 {
  margin-bottom: 3rem;
}
.statistics .table {
  display: grid;
  gap: 1rem;
  list-style: none;
}
@media (min-width: 1200px) {
  .statistics .table {
    gap: 2rem;
    grid-template-columns: 1fr 1fr;
  }
}
.statistics .table p:nth-child(1) {
  font-size: 3.75rem;
  line-height: 1;
  font-weight: 600;
  color: #299a96;
}
.statistics .info {
  margin-top: 2rem;
  padding: 2.5rem;
}

/* Soziales Engagement */
.social-effort img {
  margin-top: 2rem;
  max-width: 200px;
}

.social-effort-links .container {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .social-effort-links .container {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}
.social-effort-links .card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 100%;
  padding-bottom: 1.5rem;
}
.social-effort-links .card .text {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}
@media (min-width: 1200px) {
  .social-effort-links .card .text {
    padding: 2.5rem;
  }
}
.social-effort-links .card .cta {
  display: flex;
  justify-content: center;
  padding: 0 1.5rem;
}
@media (min-width: 1200px) {
  .social-effort-links .card .cta {
    padding: 0 2.5rem;
  }
}
.social-effort-links .card .cta a {
  align-self: center;
}

/* Google Bewertungen */
.google-reviews {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.google-reviews .box {
  overflow: hidden;
}
.google-reviews .quote {
  padding: 2.5rem;
}
@media (min-width: 992px) {
  .google-reviews .quote {
    padding: 4rem;
  }
}
.google-reviews .image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.google-reviews .image-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.google-reviews .no-padding {
  padding: 0;
}

/* Blog */
.blog-result {
  position: relative;
  display: grid;
  grid-template-rows: 240px auto;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .blog-result {
    grid-template-columns: 1fr 2fr;
    grid-template-rows: initial;
  }
}
.blog-result .tag {
  z-index: 1;
  position: absolute;
  left: 1rem;
  top: 1rem;
}
.blog-result .image-wrapper {
  position: relative;
  background-color: #009acb;
}
.blog-result .image-wrapper img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.blog-result .text {
  padding: 2rem;
}
@media (min-width: 768px) {
  .blog-result .text {
    padding: 3rem;
  }
}

.blog-header {
  margin-bottom: 4rem;
}
.blog-header .info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 2rem;
  margin-bottom: 4rem;
}

/* Bild */
.image .image-wrapper {
  position: relative;
  width: 100%;
  height: 15rem;
  overflow: hidden;
}
@media (min-width: 992px) {
  .image .image-wrapper {
    height: 45rem;
  }
}
.image .image-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Bild und Text */
.img-text {
  padding-top: 3rem;
  padding-bottom: 3rem;
  position: relative;
}
@media (min-width: 1200px) {
  .img-text {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.img-text h1 {
  color: #009acb;
}
.img-text .image-wrapper {
  overflow: hidden;
}
@media (min-width: 1200px) {
  .img-text .image-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    top: -6rem;
    bottom: -6rem;
  }
}
.img-text .image-wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

/* Mitarbeiter */
.employees .employee .flip-card {
  position: relative;
  perspective: 1000px; /* Enable perspective for 3D effects */
  position: relative;
}
.employees .employee .flip-card .front,
.employees .employee .flip-card .back {
  backface-visibility: hidden; /* Hide the back of the card when not flipped */
  transition: transform 0.5s ease-in-out; /* Smooth transition for flipping */
}
.employees .employee .flip-card .front {
  position: relative;
  overflow: hidden;
}
.employees .employee .flip-card .front img {
  transition: transform 0.3s ease-in-out;
}
.employees .employee .flip-card .front img:hover {
  transform: scale(110%);
}
.employees .employee .flip-card .front svg {
  display: block;
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
}
.employees .employee .flip-card .back {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  height: 100%;
  width: 100%;
  padding: 2rem;
  transform: rotateY(180deg);
  overflow-y: hidden;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.employees .employee .flip-card .back::-webkit-scrollbar {
  display: none;
}
.employees .employee .flip-card .back-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  margin-top: auto;
  margin-bottom: auto;
}
.employees .employee .flip-card .back-inner p {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.employees .employee .flip-card.flipped .front {
  transform: rotateY(-180deg);
}
.employees .employee .flip-card.flipped .back {
  transform: rotateY(0deg);
  overflow-y: scroll;
}
.employees .employee .title {
  padding: 1.5rem 1rem 0 1rem;
}
.employees .employee .title p {
  margin-bottom: 0.5rem;
}
.employees .employee .arrow {
  position: absolute;
  bottom: 4rem;
  right: 0;
  width: 50%;
  height: auto;
}

/* Vincere Jobportal */
.jobportal .info {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
}
.jobportal .job {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
}
.jobportal .job .date {
  margin-left: auto;
}
@media (min-width: 992px) {
  .jobportal .job {
    padding: 2.5rem;
  }
}
.jobportal .cta {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}
.jobportal nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  width: 100%;
  margin-top: 4rem;
}
.jobportal nav svg {
  display: block;
}
.jobportal nav a,
.jobportal nav p {
  padding: 4px 12px 4px 12px;
  background-color: white;
  border-radius: 0.5rem;
}
.jobportal nav a[aria-current=page],
.jobportal nav p[aria-current=page] {
  background-color: #299a96;
  color: #fff;
}

.v-job {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 1400px) {
  .v-job {
    background-size: contain;
  }
}
.v-job h1 {
  margin-bottom: 1rem;
}
.v-job .actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.v-job .job {
  position: relative;
  padding: 1.5rem 1.5rem 3rem 1.5rem;
}
@media (min-width: 768px) {
  .v-job .job {
    padding: 3rem 4rem 4rem 4rem;
  }
}
.v-job .job .tags {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.v-job .job .info {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.v-job .job .info .share {
  position: relative;
  display: inline-block;
  margin-left: auto;
}
.v-job .job .info .share button svg {
  display: block;
}
.v-job .job .info .share ul {
  display: flex;
  flex-direction: column;
  z-index: 1;
  position: absolute;
  right: 0;
  top: 100%;
  padding: 0.25rem 0;
  background-color: #08303a;
  border-radius: 0.5rem 0rem 0.5rem 0.5rem;
  white-space: nowrap;
  list-style: none;
}
.v-job .job .info .share ul li {
  margin: 0;
}
.v-job .job .info .share ul li a {
  display: block;
  color: #fff;
  padding: 0.25rem 1rem;
}
.v-job .job .info .share ul[aria-hidden=true] {
  display: none;
}
.v-job .job .cta {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  white-space: nowrap;
}
.v-job .application {
  padding: 1.5rem 1.5rem 3rem 1.5rem;
}
@media (min-width: 768px) {
  .v-job .application {
    padding: 3rem 4rem 4rem 4rem;
  }
}
.v-job .application .alert {
  margin-top: 3rem;
  margin-bottom: 2rem;
}
.v-job .application .alert-danger * {
  color: #ed6161;
}
.v-job .application .alert ul {
  padding-left: 1rem;
}
.v-job .application .text {
  margin-bottom: 1.5rem;
}
.v-job .application .tags {
  margin-bottom: 2rem;
}
.v-job .application .dropzone {
  background-color: transparent;
  border: 1px solid rgba(0, 154, 203, 0.3);
}
.v-job .application .dropzone svg * {
  fill: #009acb;
}

/* Mailchimp */
.mailchimp #mc_embed_signup {
  padding: 2rem;
}
.mailchimp #mc_embed_signup input[type=email] {
  min-height: 46px;
  border-radius: 1rem;
  font-size: 1.25rem;
  font-weight: 400;
  color: #08303a;
}
.mailchimp #mc_embed_signup .mc-field-group {
  width: 100%;
}
.mailchimp .gradient {
  z-index: -1;
  position: absolute;
  top: -20%;
  width: 100%;
}

/* Kununu */
.kununu-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.kununu-badges > * {
  height: 160px;
  width: auto;
}

/* Link Tiles */
.link-tiles .tile .image {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}
.link-tiles .tile .image img {
  transition: transform 0.3s ease-in-out;
}
.link-tiles .tile .image img:hover {
  transform: scale(110%);
}