html {
  height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  padding: 0;
}

:root {
  --faq-border-radius: 20%;
}

:focus-visible {
  outline: 3px dashed rgba(0, 124, 191, 0.842);
}

button:focus-visible {
  outline: 3px solid blue !important;
  box-shadow: 0 0 5px blue !important;
}

body {
  margin-right: 0 !important;
  overflow-x: hidden;
}

#owl-news .item {
  align-items: center;
}

#owl-demo .item {
  margin: 3px;
}

#owl-demo .item img {
  display: block;
  width: 100%;
  height: auto
}

#owl-demo .item img:hover {
  transition: all 0.5s ease;
  scale: 1.1;
  transform: rotate(0.5deg);
}

#owl-demo .item img:not(:hover) {
  transition: all 0.5s ease;
  scale: 1;
  transform: rotate(0deg);
}

.team-card-hover-effect {
  transition: box-shadow 0.3s ease-in-out;
}

.team-card-hover-effect:hover {
  box-shadow: 0 0.5rem 3rem rgba(0, 0, 0, 0.15) !important;
}

.team-member-img {
  transition: all 0.5s ease;
  object-fit: cover;
  transform-origin: center center;
}

.team-member-img:hover {
  transform: scale(1.1) rotate(0.5deg);
}

.team-member-img:not(:hover) {
  transform: scale(1) rotate(0deg);
}


.category-title h1 {
  position: relative;
  margin-top: 20px;
}

.hover-effect:hover {
  color: blue;
}

.hover-effect:hover+.row .initial-image {
  display: none;
}

.hover-effect:hover+.row .hover-image {
  display: block;
}

.offer-element {
  transition: transform 0.2s ease;
  height: 70px;
  width: 100%;
  background-color: rgb(255, 255, 255);
  position: relative;
  box-shadow: 4px 4px 3px rgba(0, 0, 0, 0.05);
}

.offer-element p {
  margin: 0;
  font-size: small;
  text-align: center;
  padding-left: 5px;
  padding-right: 5px;

}

.offer-element:hover {
  background-color: #38618C;
  color: white;
  cursor: pointer;
}

.offer-left {
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.offer-left:hover {
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  transform: translateX(-20px);
}

.offer-left::before {
  content: '';
  position: absolute;
  top: 0;
  left: 100%;
  width: 50%;
  height: 100%;
  background-color: #FFF2CC;
  z-index: -1;
  transition: width 0.2s ease;
}

.offer-left:hover::before {
  width: 18px;
}

.offer-left::after {
  content: '';
  position: absolute;
  top: 0;
  left: calc(100% - 2px);
  width: 4px;
  height: 100%;
  background-color: #d5d5d5;
  transition: 0.2s;
}

.offer-left:hover::after {
  opacity: 0;
}

.offer-right {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}

.offer-right:hover {
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  transform: translateX(20px);
}

.offer-right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2px;
  width: 0%;
  height: 100%;
  background-color: #FFF2CC;
  z-index: -1;
}

.offer-right:hover::before {
  transition: left 0.2s ease, width 0.2s ease;
  left: -18px;
  width: 16px;
  z-index: -1;
}

.offer-right::after {
  content: '';
  position: absolute;
  top: 0;
  left: -2px;
  width: 4px;
  height: 100%;
  background-color: #d5d5d5;
}

.offer-right:hover::after {
  opacity: 0;
}

@media (min-width: 768px) {
  .offer-right::after {
    opacity: 0;
  }
}

@media (min-width: 768px) {
  .offer-left::after {
    opacity: 0;
  }
}

.offer-icon {
  font-size: 30px
}

.offer-center-image-container {
  border-radius: 50px;
  background-color: rgb(255, 255, 255);
  background-size: cover;
  background-position: center;
  height: 475px;
  width: 100%;
  opacity: 100%;
  z-index: 2;
  box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

@media (max-width: 768px) {
  .offer-center-image-container {
    height: 220px;
  }
}

@media (width: 768px) {
  .offer-center-image-container {
    height: 475px;
  }
}

.offer-image {
  width: 100%;
  height: 100%;
  background-image: url("../img/leistungen/KGG.jpg");
  background-size: cover;
  background-position: center;
}

.track {
  background-color: chocolate;
}

.track2 {
  background-color: rgb(30, 210, 123);
}

.track3 {
  background-color: rgb(219, 19, 202);
}

.nav-button {
  color: #E9F5FA;
  background-color: transparent;
  transition: background-color 0.1s, color 0.1s;
  border: none;
  margin: 0px 0.5rem;
  font-size: 0.9rem;
}

.nav-button:hover {
  background-color: #FFF2CC;
  color: black;
}

.btn.active {
  background-color: #FFF2CC !important;
  color: black;
}

.tab-button {
  color: #7a7a7a;
  background-color: #d6d6d6;
  transition: background-color 0.1s, color 0.1s;
  border: none;
  font-size: 0.9rem;
  box-shadow: 4px 4px 3px rgba(0, 0, 0, 0.05);
}

.tab-button:hover {
  background-color: #FFF2CC;
  color: black;
}

.ang-navbar {
  background-color: #38618C;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.15);
}

.ang-main-logo {
  width: 4rem;
  height: auto;
  display: block;
}

@media (max-width: 340px) {
  .ang-main-logo {
    display: none;
  }
}

.wave-container {
  z-index: -1;
  overflow: hidden;
}

.wave-container svg {
  display: block;
  height: 100%;
  width: 100%;
  fill: yellow;
}

.svg-background-wrapper {
  position: absolute;
  width: 100vw;
  height: 970px;
  z-index: -1;
  overflow: hidden !important;
  left: -1px;
}

@media (max-width: 768px) {
  .svg-background-wrapper {
    height: 1100px;
  }
}

@media (width: 768px) {
  .svg-background-wrapper {
    height: 970px;
  }
}

.svg-background-wrapper-faq {
  position: absolute;
  width: 100vw;
  height: 100rem;
  z-index: -1;
  overflow: hidden;
  transform: translateY(0rem);
  left: -1px;
}

@media (max-width: 768px) {
  .svg-background-wrapper-faq {
    height: 140rem;
  }
}

.svg-content-overlay {
  position: absolute
}

.straight-line path {
  transition: d 0.3s ease-in-out;
}

.step-section {
  background-color: #3b6e99;
  padding: 2rem 0;
}

.step-icon {
  background-color: #f5d88e;
  border-radius: 50%;
  padding: 20px;
  display: inline-block;
  margin-bottom: 1rem;
}

.step {
  text-align: center;
  color: white;
}

.timeline-container {
  background-color: #38618C;
  width: 100%;
  padding: 50px 0;
}

.step {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.circle {
  width: 100px;
  height: 100px;
  background-color: #FFF2CC;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.dot {
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
}

@media (min-width: 992px) {
  .timeline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }

  .dots {
    flex-direction: row;
  }
}

@media (max-width: 991px) {
  .timeline {
    flex-direction: column;
    align-items: center;
  }

  .dots {
    margin: 10px 0;
  }
}

.faq-question,
.faq-question.collapsed {
  color: #FFF2CC;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.faq-question:hover,
.faq-question:not(.collapsed) {
  background-color: #38618C;
  color: white;
}

.accordion-header {
  border-radius: var(--faq-border-radius);
}

.accordion-collapse {
  transition: height 0.15s ease;
}

.accordion-button.collapsed {
  background-color: #ffffff;
  color: #2a2a2a;
}

.accordion-item {
  border: 0px;
  border-radius: var(--faq-border-radius);
  background-color: rgb(255, 255, 255);
  border-top-left-radius: 30px !important;
  border-top-right-radius: 30px !important;
  border-bottom-right-radius: 30px !important;
  border-bottom-left-radius: 3px !important;
}

.accordion-button {
  border: none;
}

.accordion-button.collapsed {
  box-shadow: none;
}

.accordion-button:focus,
.accordion-button:active {
  box-shadow: none !important;
  outline: none !important;
}

.roadmap-dot {
  margin-top: 11px;
}

@media (max-width: 768px) {
  .roadmap-dot {
    margin-top: 0px;
  }
}

.copyright-footer {
  font-size: smaller;
}

.roadmap-icon {
  color: #353535
}

.card-name {
  padding-left: 10px;
}

.card-role {
  color: #4a8abe;
}

.card-body .card-title {
  font-size: 1rem;
}

@media (max-width: 400px) {
    .card-title {
        font-size: 0.75rem !important;
    }
}

.card-body .card-text {
  font-size: 0.875rem;
}

@media (max-width: 400px) {
    .card-text {
        font-size: 0.68rem !important;
    }
}
@media (max-width: 345px) {
    .card-text {
        font-size: 0.65rem !important;
        margin-left: 0%;
        padding-left: 0 !important;
        padding-left: 0 !important;
        word-wrap: normal;
    }
}
.contact-text {
  display: block;
}
@media (max-width: 375px) {
    .contact-text {
        font-size: 0.7rem !important;
    }
}

.mobile-break {
  display: none;
}
@media (max-width: 375px) {
  .mobile-break {
    display: inline;
  }
}

#teamTabs .btn {
  font-family: "Arial", sans-serif;
  font-size: 16px;
  font-weight: normal !important;
}

#teamTabs .btn.active {
  font-style: normal !important;
  color: #2a2a2a;
}

.team-item {
  border-radius: 20px !important;
  max-height: 400px;
}

.sticky-top {
  box-shadow: -2px 20px 20px rgba(0, 0, 0, 0.07) !important;
  opacity: 1 !important;
}

.bookmark-target {
  scroll-margin-top: 200px;
}

.kontakt-icon {
  color: rgb(107, 107, 107)
}

.news-card {
  box-shadow: -2px 20px 20px rgba(0, 0, 0, 0.07) !important;
}

.offer-descriptor {
  transition: height 0.4s ease-in-out;
  background-color: rgba(245, 245, 245, 0.9);
  border-color: red;
  height: 12%;
  width: calc(100% - 13%);
  position: relative;
  z-index: 1;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  font-size: smaller;
  box-shadow: 0px -4px 50px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

@media (min-width: 768px) {
  .offer-descriptor {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }
}

.offer-descriptor-title-area {
  border-radius: inherit;
  height: 30px;
  width: 100%;
  background-color: #38618c;
  color: white;
  justify-content: center;
}

@media (min-width: 768px) {
  .offer-descriptor-title-area {
    height: 58px;
  }
}

.offer-descriptor-title-area p {
  text-align: center;
  padding-top: 3px;
}

@media (min-width: 768px) {
  .offer-descriptor-title-area p {
    padding-top: 17px;
  }
}

.fade {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.offer-resize {
  height: 80%
}

@media (min-width: 576px) {
  .offer-resize {
    height: 50%;
  }
}

@media (min-width: 768px) {
  .offer-resize {
    height: 40%;
  }
}

@media (min-width: 992px) {
  .offer-resize {
    height: 35%;
  }
}

.break-all {
  word-break: break-word;
}

@media (max-width: 340px) {
  .break-all {
    word-break: break-all;
  }
}

.privacy-section p {
  font-size: 12px;
}

.self-employed-banner {
  width: 150px;
  height: 20px;
  background-color: #FFF2CC;
  z-index: 2;
  top: 18px;
  left: -38px;
  font-size: 11px;
  padding-top: 1px;
  text-align: center;
  transform: rotateZ(-40deg);
  font-weight: 500;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.video-container {
  position: relative;
  width: 100%;
  height: auto;
}

.video-container video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.custom-nav-tabs .list-group-item.active {
  background-color: #38618C !important;
  color: white !important;
  border-color: #38618C !important;
}

.custom-nav-tabs .list-group-item-action:hover {
  background-color: #e0e0e0;
  color: #333;
}

.tab-pane h2 {
  margin-top: 0;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
  color: #38618C;
  font-size: x-large
}

.tab-pane h3 {
  margin-top: 30px;
  margin-bottom: 7px;
  color: #38618C;
  font-size: large;
}

.tab-pane ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}

.tab-pane p {
  margin-bottom: 10px;
}

.tab-pane address {
  font-style: normal;
  margin-top: 10px;
  margin-bottom: 15px;
}

.team-tab-left {
  border-bottom-right-radius: 0 !important;
  border-top-right-radius: 0 !important;

}

.team-tab-mid {
  border-radius: 0 !important;

}

.team-tab-right {
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;

}

.team-tab-text {
  font-size: 0.875rem !important;
}