/* .portfolio-wrapper .card-title, #blogbody.blog-wrapper .card-body a {
    min-height: 25px;
    overflow: hidden;
    -webkit-line-clamp: 1;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
}

.blog-wrapper .card-intro, #blogbody.blog-wrapper .card-body p {
    overflow: hidden;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    min-height: 90px;
} */


#blogbody.blog-wrapper .card-body > a {
    min-height: 25px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    min-height: 60px;
    hyphens: auto;
    word-wrap: break-word; /* Für ältere Browser */
    overflow-wrap: break-word;
}

#blogbody.blog-wrapper .card-body p {
    overflow: hidden;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    min-height: 60px;
}

.swiper-carousel .swiper-slide > div {
    height: 100%;
}

.h2 {
    font-size: clamp(30px, 5vw, 41px);
}

.background-size-cover {
    background-size: cover;
}

h1.title-font {
    font-size: clamp(40px, 5vw, 55px);
}

h2.title-font {
    font-size: clamp(27px, 5vw, 55px);
    /* line-height: clamp(2.7rem, 6vw, 3.438rem); */
    line-height: clamp(3rem, 6vw, 3rem);
}

header .navbar .header-tel {
    color: var(--white);
}

header.sticky.sticky-active [data-header-hover=light] .navbar-nav .header-tel {
    color: var(--dark-gray);
}

.project_related_info i {
    color: black;
    margin-right: 3px;
}

.project_desc {
    overflow: hidden;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    min-height: 52px;
}

/* Container der Liste */
.list {
  display: grid;
  grid-template-columns: repeat(1, 1fr); /* Eine Spalte standardmäßig */
  gap: 1.875rem; /* Abstand zwischen den Karten */
  margin-top: 1.75rem;
}

@media (min-width: 768px) {
  .list {
    grid-template-columns: repeat(2, 1fr); /* Zwei Spalten ab "md"-Breakpoint */
  }
}

/* Karte (Projekt-Item) */
.project_item {
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Hover-Animation */
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.project_item:hover {
  transform: translateY(-4px); /* Leichtes Schweben bei Hover */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2); /* Verstärkter Schatten */
}

/* Projekt-Inhalt */
.project_innner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.project_name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.project_name:hover {
  color: var(--base-color); /* Farbe ändern bei Hover */
}

.project_related_info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #666;
}

/* .project_desc {
  margin-top: 1rem;
  color: #444;
  font-size: 0.9rem;
  line-height: 1.5;
} */

.list_tag {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.project_tag {
  background-color: #f3f3f3;
  color: #333;
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
  border-radius: 0.25rem;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.project_tag:hover {
  background-color: var(--base-color);
  color: #fff;
}

/* Footer der Karte */
.project_more_info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: #666;
}

.project_price {
  font-size: 1.125rem;
  font-weight: 600;
  color: #333;
}

.project_action {
  margin-top: 1.5rem;
}

.project_apply_btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.75rem 1.25rem;
  font-size: 17px;
  font-weight: 600;
  color: var(--base-color);
  border: 2px solid var(--base-color);
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.project_apply_btn:hover {
  background-color: var(--base-color);
  color: #fff;
}

/* Herz-Symbol */
.add_wishlist_btn {
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
}

.add_wishlist_btn .ph-heart {
  font-size: 1.5rem;
  color: #ccc;
  transition: color 0.3s ease;
}

.add_wishlist_btn:hover .ph-heart {
  color: var(--base-color);
}

header .navbar-brand img {
    max-height: 80px;
}

header.sticky .navbar-brand {
    padding: 20px 0;
}

.project_content a {
    display: block;
    min-height: 60px;
}

.active>.page-link, .page-link.active {
    color: white;
    background-color: var(--base-color);
    border-color: var(--base-color);
}

.page-link {
    color: var(--base-color);
}



h3.title-font.small_heading {
    font-size: clamp(20px, 5vw, 1.5em);
    line-height: clamp(1.8rem, 6vw, 2.5rem);
}

.bg-base-color {
    background-color: var(--dark-gray);
}

.dark-layer:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.4);
}

.job-offer-description b {
  color: black;
  display: block;
  margin-top: 3%;
  margin-bottom: 2%;
  font-size: 25px;
}

.job-offer-description b + br {
  display: block;
  line-height: 10px;
}

.job-offer-description ul {
  padding-left: 18px;
}

.job-offer-description li {
  list-style-type: disc;
}

.job-offer-description li::marker {
  color: var(--base-color);
}

.job__overview__content i {
  min-width: 23px;
}

input#terms-check {
  width: 25px;
  height: auto;
}

.check-box {
  display: flex;
  align-items: center;
  justify-content: start;
}

select.is-invalid {
  background-image: none !important;
}

.swiper-slider-services .services-box-style-02 {
  -webkit-box-shadow: 0 0px 10px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.08);
}

div#searchBox {
  width: 100%;
  max-width: 556px;
}

a#filterButton {
  min-width: 130px;
}

div#searchBox input {
  height: 48px;
}

button.ais-SearchBox-reset {
  position: absolute;
  top: 19px;
  right: 30px;
  color: transparent;
  opacity: .8;
  fill: currentColor;
  background-color: transparent;
  border: 0px solid transparent;
  padding: 0;
  width: 10px;
  height: 10px;
}

form.ais-SearchBox-form {
  position: relative;
}

span.ais-SearchBox-loadingIndicator {
  display: none;
}

/* Shop sidebar */
.shop-sidebar  li {
  position: relative;
  margin-bottom: 2px;
  padding: 0px 25px;
  width: 100%;
  cursor: pointer;
}
.shop-sidebar  li a {
  display: block;
}
.shop-sidebar  li a:hover .product-cb {
  border-color: var(--dark-gray);
}
.shop-sidebar  li a:hover .product-cb:after {
  opacity: 1;
}
.shop-sidebar li .product-cb {
  width: 15px;
  height: 15px;
  border: 1px solid var(--medium-gray);
  display: inline-block;
  position: absolute;
  left: 0;
  top: 7px;
}
.shop-sidebar  li .product-cb:after {
  width: 11px;
  height: 11px;
  background-color: var(--base-color);
  border-radius: 2px;
  content: "";
  position: absolute;
  left: 1px;
  top: 1px;
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.shop-sidebar  li .item-qty {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  height: 30px;
  width: 30px;
  font-size: 16px;
  text-align: center;
  font-weight: 500;
  color: var(--dark-gray);
  line-height: 30px;
}
.shop-sidebar  li:last-child {
  margin-bottom: 0;
}
.shop-sidebar .color-filter li .product-cb {
  border: 0;
}
.shop-sidebar .color-filter li .product-cb:after {
  background-color: var(--white);
}
.shop-sidebar .fabric-filter li .product-cb {
  line-height: 0;
  overflow: hidden;
  border: 0;
}
.shop-sidebar .fabric-filter li .product-cb:after {
  background-color: var(--white);
}
.shop-sidebar .rating-filter li {
  padding-left: 0;
}
.shop-sidebar .tag-cloud a {
  padding: 5px 10px;
}

.ais-RefinementList > ul > li {
    padding: 0px;
}

.shop-sidebar .shop-filter li.custom-filter-li:hover .product-cb:after, .ais-RefinementList-item.ais-RefinementList-item--selected li.custom-filter-li .product-cb:after {
  opacity: 1;
}

#spontanBewerbung {
  background-color: white;
  border-color: white;
  color: var(--dark-gray);
  transition: background-color 0s, color 0s, transform 300ms ease-in-out;
}

.sticky-active #spontanBewerbung {
  background-color: var(--dark-gray);
  border-color: var(--dark-gray);
  color: var(--white);
}

input, select, button {
  height: 50px;
}

button#sliderFormBtn {
  min-width: 190px;
}

.filter-sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 350px;
  max-width: 100%;
  height: 100%;
  background: #f8f9fa;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
  padding: 20px;
  padding-top: 50px;
  overflow-y: auto;
  transition: left 0.5s;
  z-index: 1050;
}
.filter-sidebar.open {
  left: 0;
}
.close-filter {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 40px;
  background: none;
  border: none;
  cursor: pointer;
}

button#filterButton {
  display: block;
  /* width: 100%; */
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  background-color: var(--base-color);
  border: 2px solid var(--base-color);
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background-color 0.5s ease, color 0.5s ease;
}

.ais-HierarchicalMenu-item--selected {
font-weight: initial;
}

span.ais-HierarchicalMenu-label {
font-size: 1rem;
color: #4b566b;
}

span.ais-HierarchicalMenu-count {
color: #7d879c !important;
font-size: 0.9rem !important;
background-color: transparent;
}

a.ais-HierarchicalMenu-link {
display: flex;
justify-content: space-between;
}

li.ais-RefinementList-item div input, li.ais-RefinementList-item div span {
display: flex;
justify-content: space-between;
padding-top: 1px;
}

li.ais-RefinementList-item div {
display: flex;
justify-content: space-between;
}

li.ais-RefinementList-item div input {
margin-right: 10px;
width: 14px;
min-width: 14px;
}

li.ais-RefinementList-item>div {
-webkit-box-align: center!important;
-ms-flex-align: center!important;
align-items: center!important;
}

span.facette-attribute * {
display: flex;
justify-content: space-between;
}

span.facette-attribute {
flex: 1 1 auto!important;
}

ul.ais-RefinementList-list {
padding-left: 0px;
}

.facet-item input {
accent-color: var(--base-color);
}

.single-filter-widget--title {
display: block;
font-size: 17px;
color: var(--base-color);
font-weight: 600;
text-transform: uppercase;
margin-bottom: 7px;
}

.overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5); /* Abdunkelung */
z-index: 1049; /* Unterhalb der Sidebar */
}

.overlay.active {
display: block;
}

.services-tab-navigation #servicesTabs {
  border: none;
  justify-content: start!important;
  display: flex;
}

.services-tab-navigation li.nav-item {
  padding: 0px;
  margin-right: 15px;
  background-color: transparent;
  border: none;
  height: 100%;
  display: flex;
}

.services-tab-navigation .nav-tabs .nav-link.active {
  background-color: var(--base-color);
  color: var(--white);
}

.services-tab-navigation .nav-tabs .nav-link {
  background-color: var(--white);
  color: var(--base-color);
  height: 100%;
}

#job-categories .card-title {
  min-height: 60px;
}

#sliderFormWrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 100px;
  start: 50%;
  transform: translate(-50%, 0);
  width: 90%;
  height: 50%; 
}

#sliderFormWrapperInner {
  display: flex;
  flex-direction: column; 
  justify-content: space-between; 
  align-items: end; 
  height: 100%; 
  /* max-width: 950px; */
  width: 100%;
}

#sliderCurrentTitle {
  flex-shrink: 0; 
  width: 100%;
  text-align: center;
}

#sliderForm {
  flex-shrink: 0; 
  width: 100%;
}

a#spontanBewerbung {
  /* min-width: 170px; */
  font-size: 17px;
  padding: 5px 15px;
}

.sticky-active .login i {
  color: var(--dark-gray)!important;
}

input#fileUpload {
  min-height: 56px;
}

.terms-condition-box input[type=checkbox] {
  opacity: 0;
  visibility: visible;
  position: absolute;
  top: 23px;
  left: 24px;
  height: 1px;
  width: 1px;
  color: transparent;
  border-color: transparent;
  background-color: transparent;
  outline: transparent;
}

div#sliderJobCount {
  display: none;
}

.custom-list ul {
  list-style: none; 
  padding: 0;
  margin: 0;
}

.custom-list li {
  position: relative;
  padding-left: 30px; 
  margin-bottom: 10px;
  font-size: 16px; 
  line-height: 1.5;
}

.custom-list li::before {
  content: "\e83f"; 
  font-family: "Feather"; 
  font-size: 20px; 
  color: var(--base-color); 
  position: absolute;
  left: 0;
  top: -4px;
  line-height: 1.5; 
}

div#sliderForm {
  margin-bottom: 22%;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

.download-link {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.download-entry:hover .download-name {
  color: black;
}

.download-name {
  transition: .3s;
}

div#useGeoLocation {
  cursor: pointer;
}

div#useGeoLocation:hover {
  color: black;
}

.list-style-04  {
  padding-left: 24px;
}

.list-style-04 li {
  list-style: none!important;
  position: relative;
}

.list-style-04 i {
  position: absolute;
  top: 9px;
  left: -19px;
}

.bg-gradient-black-bottom-transparent {
  background: linear-gradient(0deg, rgba(0,0,0, 0) 0%, rgba(0, 0, 0, .8) 100%);
}

.sticky-active .bg-gradient-black-bottom-transparent {
  background: none;
}

input[type="date"] {
  position: relative;
}

.services-box-content {
  overflow: hidden;
  -webkit-line-clamp: 7;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  max-height: 100%;
}

.iti {
  width: 100%;
}

.btn-downloads {
  font-size: 17px!important;
  font-family: var(--primary-font);
  /* text-transform: initial!important; */
}

.grid-item {
  transition: transform .5s ease!important;
}

.grid-item:hover {
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0);
}

.testimonials-author {
  background-image: linear-gradient(to right, #555555, #333333, #000000, #333333, #555555);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonial-bg {
  background-size: contain;
  background-position: center;
  padding-top: 120px;
  padding-bottom: 120px;
}

.contact_form_wrapper-bg.fix-background {
  background-attachment: initial !important;
}

.header-aspect-ratio {
  aspect-ratio: 16/3;
}

.left-minus-45 {
  left: -45%;
}
.bottom-minus-200px {
  bottom: -200px;
}
.one-half-screen {
height: 550px !important;
}
.swiper-pagination-progress .swiper-progress {
  background-color: var(--dark-gray); 
}
.magic-drag-cursor #ball-cursor:before {
  font-weight: 500;
}

/* .bg-dark-gray, .bg-dark-gray:focus {
  background-color: white;
} */

.bg-dark-gray {
  background-color: var(--dark-gray);
}

h2.alt-font {
  font-size: clamp(20px, 5vw, 3.438rem);
  line-height: clamp(29px, 5vw, 4.438rem);
}

.services-box-style-02 {
  height: 100%;
}

.team-style-08 figure figcaption .member-designation {
  hyphens: auto;
  font-size: clamp(12px, 2vw, 16px);
}

.job__overview__content__logo {
  width: 100%;display: flex;
  justify-content: center;
}

.job__overview__content__logo img {
    max-width: 250px; */
    filter: invert(1);
    filter: invert(1);
}

.sub-footer .container {
  border-top: 1px solid black;
  padding-top: 30px;
}

.terms_condition ul {
  display: flex;
  justify-content: end;
  gap: 15px;
}

img.footer-logo {
  width: 76%;
  min-width: 150px;
  max-width: 209px;
}

.dark li a {
  color: var(--dark-gray);
}

.social-wrapper {
  display: flex;
  gap: 10px;
}

.job-offer-description b {
  font-family: var(--title-font) !important;
}

.job-offer-title {
  font-weight: 600 !important;
}

a#downloadcenterBtn {
  font-size: 17px;
}

/* Respo */

@media (min-width: 2048px) {
  body {
    font-size: 20px;
    line-height: 30px;
  }
}

@media (min-width: 1440px) {
  h2.title-font {
      line-height: clamp(3rem, 6vw, 4rem);
  }
}

@media (max-width: 992px) {

  /* div#sliderFormWrapper {
    transform: translate(-50%, -90%) !important;
  } */

  div#sliderIndustryDropdown {
    flex-basis: calc(100% - 135px);
  }

  div#sliderSearchbox {
      flex-basis: 100%;
      margin-right: 0px !important;
      margin-bottom: 10px;
  }

  div#sliderFormInner {
    flex-wrap: wrap;
  }

  ul.navbar-nav.alt-font {
    padding-bottom: 0px;
  }

  div#navbarNav {
      padding-bottom: 30px;
  }

  ul.navbar-nav.alt-font.navbar-nav-2 {
    padding-top: 0px;
  }

}
@media (min-width: 992px) and (max-width: 1450px) {
  .logo-container, .application-container2 {
    display: none!IMPORTANT;
  }

  .hamburger-container {
    width: 100%;
  }
}

@media (max-width: 991px) {

  .job-back-btn {
    margin-bottom: 30px;
    margin-top: 0px !important;
    display: flex;
    justify-content: center;
}

  #filterButton {
    font-size: 12px;
    padding: 13px 10px;
}

  button#sliderFormBtn {
    width: 166px;
    min-width: 68px;
    padding: 13px 5px;
}
  div#start_content {
    margin-top: 40px !important;
}
  .copyright-wrapper {
    height: 50px;
    min-height: 50px !important;
}
  .navbar .navbar-nav .nav-link {
    text-shadow: none;
}

  div#sliderFormInner {
    align-items: start!important;
}

  div#sliderLocationDropdown {
    margin-bottom: 10px;
    width: calc(100% - 186px) !important;
}

  nav.navbar.bg-gradient-black-bottom-transparent {
    background: none;
}

  header .navbar-brand .mobile-logo {
    width: 150px !important;
    margin-top: 9px;
}

header .navbar-brand {
  padding: 0px 0;
}

}

@media (min-width: 768px) {

    .pb-minmd-4 {
        padding-bottom: 4% !important;
    }
}

@media (max-width: 767px) {

  .footer-btn-wrapper {
    margin-bottom: 20px;
}

  .sub-footer-container > div {
    text-align: center;
}

.terms_condition ul {
    justify-content: center;
}


  .communication {
    margin-bottom: 1.875rem;
}

  .card-body.p-13.md-p-11 {
    padding: 5% !important;
}
  .project_content a {
    line-height: 1.7;
}

    h1, .h1 {
        font-size: 3.375rem;
        line-height: 4rem;
    }

    .btn.btn-large {
        font-size: 14px;
        padding: 10px 20px;
    }

    div#pop-lang a {
        display: block;
        margin-bottom: 10px;
    }
    
    div#pop-lang span.separator {
        display: none;
    }

    .nav-tabs li, .portfolio-filter li.nav-item {
        display: inline-block !important;
        margin-bottom: 5px !important;
        padding: 0px 10px 10px !important;
        width: initial !important;
    }

    .portfolio-filter {
        display: flex!important;
        justify-content: center;
    }
    
    .portfolio-filter li.nav-item {
        margin: 0!important;
    }

    .consultation-text {
        display: block;
        min-height: 60px;
    }

    .consultation-cta {
        display: block;
        text-align: center;
    }
}

@media (max-width: 575px) {

  section.contact_form_wrapper-bg {
    background-image: none !important;
}

  .mobile-noPad-section {
    padding-top: 0px;
    padding-bottom: 0px;
}

  .btn.btn-small {
    padding: 13px 10px;
    font-size: 17px;
    padding: 5px 15px;
}

  h1.h3 {
    margin-bottom: 20px!important;
  }

  .terms_condition ul {
    flex-wrap: wrap;
}

.home-section #blogbody .grid-item {
    display: none;
}

.home-section #blogbody li.grid-item:nth-child(2) {
  display: block;
}

  .m-none {
    display: none;
}

  div#sliderFormWrapper {
    width: 90% !important;
}

  input, select, textarea, .form-control, .form-select {
    padding: 12px 15px;
}

  .swiper-slider-talente .cover-background {
    background-position: 50% 22% !important;
  }
}

@media (max-width: 425px) {
  .social-wrapper {
    justify-content: center;
}
  footer .col-12 {
    text-align: center;
}
  .logo-container {
    margin-right: initial!important;
}

  .testimonial-container {
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-container img {
    margin-bottom: 15px;
    margin-right: 0px!important;
}

.review-style-05 span {
    line-height: 1.5;
}
  .testimonial-container {
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-container img {
    margin-bottom: 15px;
    margin-right: 0px!important;
}
}
@media (max-width: 375px) {
  input#fileUpload {
    font-size: 12px;
}

  div#sliderLocationDropdown { 
    width: 100%;
}

div#sliderLocationDropdown {
    width: 100%!important;
    margin-right: 0px!important;
}

button#sliderFormBtn {
    width: 100%;
    margin-bottom: 15px;
}

button#sliderFormBtn {
  width: 100%;
  margin-bottom: 15px;
}
  a#spontanBewerbung {
    font-size: 14px;
}

.hamburger-container {
    padding-left: 15px!important;
}

header .navbar-brand .mobile-logo {
    width: 100px !important;
    padding: 0px!important;
}

.application-container {
    padding: 0px !important;
}
  
  .jobOffers-searchbox {
    flex-wrap: wrap;
  }

  div#searchBox {
    margin-right: 0px!important;
    margin-bottom: 10px;
  }
  .filterButton-wrapper {
    width: 100%;
  }
  a#filterButton {
    width: 100%;
}
}