@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: #fff;
}
header {
    background: rgb(241 241 241 / 0%);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding: 15px 0px;
}
.wrapper{
padding-top: 80px;
}
.nav-list {
  list-style: none;
  gap: 50px;
  padding: 0;
}
.link-header {
  text-decoration: none;
  color:rgba(0, 42,71,1);
  position: relative;
  font-weight: 700;
  font-size: 16px;
  padding-bottom: 5px;
}
.link-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: rgba(0, 164, 222, 1);
  transition: 0.3s ease;
}
.link-header:hover::after {
  width: 100%;
}
.link-header:hover {
  color: rgba(0, 164, 222, 1);
}
.link-header.active::after {
  width: 100%;
}
.header-phone-link {
  text-decoration: none;
  color: rgba(0, 164, 222, 1);
  font-weight: 700;
  font-size: 14px;
}
.phone-icon-wrapper {
  width: 45px;
  height: 39px;
  background: rgba(241, 241, 241, 1);
  display: flex;
  align-items: center;
  justify-content: center;

  /* шестикутник */
    clip-path: polygon(
    25% 0%, 
    75% 0%, 
    100% 50%, 
    75% 100%, 
    25% 100%, 
    0% 50%
  );

}
.header-phone-icon {
  width: 23px;
}
.offer {
    background: #F8F8F8;
    overflow: hidden;
    padding-top: 90px;
}


.offer-title{
    font-weight: 700;
    font-size: 64px;
    color: rgba(0, 42, 71, 1);
}


.offer-content {
  position: relative;
  padding: 60px 40px;
  height: 100%;
  
  background: url(../img/deco-1.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  flex-direction: column;
  justify-content: center;

  
}
.button-offer {
  display: flex;
}
.btn-offer {
  display: inline-block;
  padding: 16px 32px;
  background-color: rgba(0, 164, 222, 1);
  color: rgba(255, 255, 255, 1);
  font-weight: 700;
    font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-offer:hover {
  background-color: rgba(0, 42, 71, 1);
  color: rgba(255, 255, 255, 1);
  transition: all 0.3s ease;
}
.offer-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
  height: auto; /* висота блоку */
  overflow: visible;
}

.offer-image::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  max-width: 500px;
  max-height: 560px;
  background: rgba(0, 164, 222, 1);
  clip-path: polygon(
    50% 0%, 
    100% 25%,
    100% 75%,
    50% 100%, 
    0% 75%,
    0% 25%
  );
  z-index: 1;
  
}



.offer-image img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  transform: scale(1);
}

.offer:hover .container .row .col-lg-6 .offer-image img {
 transform: scale(1.02);
}

.zeitarbeit-slider .card {
  margin: 0 15px;
  padding: 33px 28px;
}

.slick-slide {
  height: auto;
}

.slick-track {
  display: flex;
}
.zeitarbeit h2{
    font-weight: 700;
    font-size: 64px;
    color: rgba(0, 42, 71, 1);
    text-align: center;
}
.subtitle{
    font-weight: 700;
    font-size: 24px;
    color: rgba(0, 164, 222, 1);
    text-align: center;
    margin-bottom: 67px;
}
.card{
    background: linear-gradient(
    180deg,
    rgba(241, 241, 241, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
    padding: 20px;
 
    border: 1px solid rgba(0, 164, 222, 1);
    border-radius: 0px;

}
.card h3{
    font-weight: 700;
    font-size: 16px;
    color: rgba(0, 164, 222, 1);
    margin-bottom: 20px;
}
.card-text{
    font-weight: 400;
    font-size: 16px;
    color: rgba(0, 42, 71, 1);
}
.zeitarbeit-arrows {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.custom-arrow {
  width: 55px;
  height: 65px;
  border: none;
  cursor: pointer;
  position: relative;
  background: rgba(0, 164, 222, 1);
    transition: all 0.3s ease;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;

  /* шестикутник */
  clip-path: polygon(
    50% 0%, 
    100% 25%, 
    100% 75%, 
    50% 100%, 
    0% 75%, 
    0% 25%
  );
}
.custom-arrow:hover {
 background: rgba(0, 42, 71, 1);
 transition: all 0.3s ease;
   background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
}


.custom-arrow.prev {
  background-image: url("../img/ArrowLeft.svg");
}

.custom-arrow.next {
  background-image: url("../img//ArrowRight.svg");
}
.dein-job{
    background:rgba(0, 42, 71, 1);
    margin-top: 60px;}

.dein-job-title h2{
        padding: 60px 40px;
        font-weight: 700;
        font-size: 64px;
        color: rgba(255, 255, 255, 1);
        text-align: center;
    }
.dein-job-title p{
        padding: 0px 40px;
        font-weight: 400;
        font-size: 16px;
        color: rgba(255, 255, 255, 1);
        text-align: center;
        margin-bottom: 67px;
    }
    .button-dein-job {
  display: flex;
  justify-content: center;
  align-items: center;   
}
.btn-dein-job {
  display: inline-block;
  padding: 16px 32px;
  background-color: rgba(0, 164, 222, 1);
  color: rgba(255, 255, 255, 1);
  font-weight: 700;
    font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 65px;
}
.btn-dein-job:hover {
  background-color: rgba(0, 163, 222, 0.448);
  color: rgba(255, 255, 255, 1);
  transition: all 0.3s ease;
}

.dein-job .container {
  position: relative;
}

.dein-job-img {
  position: absolute;
  max-width: 390px;
  height: 315px;
  margin-top: 15px;
  margin-bottom: 15px;
  z-index: 1;
}

.left-top {
  top: 0;
  left: 0;
}

.right-bottom {
  bottom: 0;
  right: 0;
}
.dein-job-title,
.button-dein-job {
  position: relative;
  z-index: 2; 
}
.vorteile-1 {
     position: relative;
     
  padding: 80px 0;
  
  z-index: 2;
      
 
}
    
    

.vorteile-title {
  text-align: center; 

}
.vorteile-title h2{
    font-weight: 700;
    font-size: 64px;
    color: rgba(0, 42, 71, 1);
    text-align: center;
    margin-top: 60px;
}
.vorteile-subtitle{
    font-weight: 700;
    font-size: 24px;
    color: rgba(0, 164, 222, 1);
    text-align: center;
    margin-bottom: 67px;
}
.hexagonx {
  width: 120px;
  height: 130px;
  background: rgba(241, 241, 241, 1);
  margin: 0 auto 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  clip-path: polygon(
    50% 0%, 
    100% 25%, 
    100% 75%, 
    50% 100%, 
    0% 75%, 
    0% 25%
  );
}

.hexagonx img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.vorteile-card-1 {
  background-color: rgba(0, 42, 71, 1);
  background-image: url("../img/deco-1.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  padding: 50px 25px;
  overflow: hidden;
   height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
 background-position: center;
 
 }

   

/* щоб контент був поверх */
.vorteile-card-1 > * {
  position: relative;
  z-index: 2;
}

.vorteile-card-1 h4 {
  font-weight: 700;
  font-size: 16px;
  color: rgba(0, 164, 222, 1);
  margin-bottom: 10px;
}

.vorteile-card-1 p {
  font-weight: 400;
  font-size: 16px;
  color:  rgba(241, 241, 241, 1);
}

.button-versprechen {
  display: flex;
 

}

.btn-versprechen{
  display: inline-block;
  padding: 16px 32px;
  background-color: rgba(0, 164, 222, 1);
  color: rgba(255, 255, 255, 1);
  font-weight: 700;
font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;

}
.btn-versprechen:hover {
  background-color: rgba(0, 163, 222, 0.448);
  color: rgba(255, 255, 255, 1);
  transition: all 0.3s ease;
}
.versprechen{
    background-color: rgba(0, 42, 71, 1);
    padding: 60px 40px;
    position: relative;
    margin-top: 105px;
    position: relative;
  overflow: visible; /* дозволяє вихід за межі */
}

.versprechen h2 {
    font-weight: 700;
    font-size: 64px;
    color: rgba(255, 255, 255, 1);
   }


.versprechen-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  
}

/* Головна картинка */
.versprechen-image .main-img {
  position: absolute;
  z-index: 5;
  max-width: 100%;
  height: auto;
  top: -165px;
 
}

/* Декор позаду */
.versprechen-image .deco-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  object-fit: contain;
  transform: translateX(-60px); /* зсув без зміни ширини */
  z-index: 1;
}
.versprechen-content {
  position: relative;
  z-index: 2;
   padding: 60px 40px;
  height: 100%;
   display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Секція з фоновим зображенням */
.dienst {
  background-image: url('../img/Group3.png');
  background-position: right top;
  background-repeat: no-repeat;
  padding-bottom: 65px;
  
}

/* Карти послуг */
.dienst-card {
  background: linear-gradient(
    180deg,
    rgba(241, 241, 241, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  padding: 20px;
  border: 1px solid rgba(0, 164, 222, 1);
  border-radius: 0px;
  transition: all 0.3s ease; /* плавний перехід для фону і тексту */
  min-height: 320px;
      display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

/* Hover ефект картки */
.dienst-card:hover {
  background-color: rgba(0, 42, 71, 1); 
  background-image: url("../img/deco-1.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-color: rgba(0, 42, 71, 1); 
  transform: translateY(-5px); /* невеликий підйом */
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Текст і заголовки всередині картки */
.dienst-card h4,
.dienst-card p,
.dienst-card a {
  transition: color 0.3s ease;
}

/* Hover текст і посилання */
.dienst-card:hover h4,
.dienst-card:hover p,
.dienst-card:hover a {
  color: rgba(255, 255, 255, 1);
}

/* Посилання з gap для стрілки */
.dienst-card a {
  display: inline-flex;
  gap: 8px;
  font-size: 16px;
  color: rgba(0, 164, 222, 1);
  font-weight: 700;
  text-decoration: none;
}

/* Стрілка всередині посилання */
.dienst-card a img.dienst-arrow {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.dienst-card:hover a img.dienst-arrow {
  transform: translateX(5px);
  filter: brightness(0) invert(1); /* робимо стрілку білою на hover */
}

.dienst h2 {
  font-weight: 700;
  font-size: 64px;
  color: rgba(0, 42, 71, 1);
  padding-top: 65px;
  margin-bottom: 65px;
  text-align: center;
}

.dienst-card h4 {
  font-weight: 700;
  font-size: 16px;
  color: rgba(0, 164, 222, 1);
  margin-bottom: 10px;
}

.dienst-card p {
  font-weight: 400;
  font-size: 16px;
  color: rgba(0, 42, 71, 1);
}
.button-dienst {
  display: flex;
  justify-content: center;
  align-items: center;   
  margin-top: 40px;
}
.btn-dienst {
  display: inline-block;
  padding: 20px 70px;
  background-color: rgba(0, 164, 222, 1);
  color: rgba(255, 255, 255, 1);
  font-weight: 700;
    font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-dienst:hover {
  background-color: rgba(0, 42, 71, 1);
  color: rgba(255, 255, 255, 1);
  transition: all 0.3s ease;
}
.tipps{
    background: rgba(0, 42, 71, 1);
  padding: 60px 40px;
}
.button-tipps {
  display: flex;
  justify-content: flex-start;
  margin-top: 40px;
}
.btn-tipps {
  display: inline-block;
  padding: 20px 70px;
  background-color: rgba(0, 164, 222, 1);
  color: rgba(255, 255, 255, 1);
  font-weight: 700;
    font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-tipps:hover {
  background-color: rgba(0, 163, 222, 0.448);
  color: rgba(255, 255, 255, 1);
  transition: all 0.3s ease;
}
.tipps-content{
   display: flex;
  flex-direction: column;
  align-items: flex-start;


}
.tipps-content h2{

    font-weight: 700;
    font-size: 36px;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 20px;
}

.tipps-slide {
  background: #00A4DE;
  padding: 5px;
  margin: 0 10px;
  height: 100%;
  display: flex !important;
  flex-direction: column;
  margin-right: -100px;
}

.tipps-slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.tipps-text {
  color:rgba(255, 255, 255, 1);
  font-weight: 700;
  font-size: 24px;
}
/* Відступ між слайдами */
.tipps-slider .slick-slide {
  margin: 0 5px; /* відступ по боках */
}

/* Компенсація відступів на контейнері слайдера */
.tipps-slider {
  margin: 0 -20px;
}


.tipps-slider .slick-slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.tipps-arrows.tipps-arrows {
 display: flex;
  justify-content: flex-start; /* ліворуч */
  gap: 10px; /* відстань між стрілками */
  margin-top: 15px;
}





.tipps-slider-wrapper{
  position: relative;
 background-image: url("../img/deco-1.png");
  background-repeat: no-repeat;
  background-position: center center; 
  background-size: contain; 
  padding: 50px; 
}

.contact-section {
  padding: 80px 0;
 
}
.contact-left {
  padding-right: 25px;
}
.contact-title {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 40px;
    color: rgba(0, 42, 71, 1);
}
.contact-links {
  
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  
}
.contact-links li {
  margin-bottom: 20px;
  font-weight: 700;
 color:rgba(0, 164, 222, 1);
 font-size: 24px;
 
}
.contact-links a {
  text-decoration: none;
  color: rgba(0, 164, 222, 1);
  transition: 0.3s;
}
.contact-phone span {
  color: rgba(0, 42, 71, 1);
  font-weight: 400;
  font-size: 16px;
}
.social-icons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}
.contact-left{
  background-image: url("../img/deco-1.png");
  background-repeat: no-repeat;

}
.contact-form {
  background: rgba(0, 164, 222, 1);
  padding: 40px;
}

.contact-form h4 {
  color: rgba(255, 255, 255, 1);
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 24px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 20px;
  border: none;
  outline: none;
  font-weight: 400;
  color: rgba(0, 42, 71, 1);
  font-size: 14px;
  box-sizing: border-box;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row input {
  flex: 1; /* однакова ширина */
  margin-bottom: 0; /* щоб не було подвійного відступу */
}

.contact-form {
  background: rgba(0, 164, 222, 1);
  padding: 40px;
}

.contact-form h4 {
  color:rgba(255, 255, 255, 1);
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 24px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 20px; /* стандартний відступ між інпутами */
  border: none;
  outline: none;
  font-weight: 400;
  color: rgba(0, 42, 71, 1);
  font-size: 14px;
  box-sizing: border-box;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 20px; /* відступ між PLZ/Ort і наступним полем */
}

.form-row input {
  flex: 1; /* однакова ширина */
  margin-bottom: 0; /* щоб не було подвійного відступу */
}

.contact-title {
  font-size: 36px;
}

input::placeholder,
textarea::placeholder {
  color: rgba(0, 42, 71, 1);
  opacity: 1;
  font-size: 14px;
  font-weight: 400;
}

/* 📱 тільки для мобілки */
@media (max-width: 576px) {
  .form-row {
    flex-direction: column;
    gap: 0;
    margin-bottom: 20px;
  }

  .form-row input {
    margin-bottom: 20px;
  }
}

.contact-form button
 { background: rgba(0, 42, 71, 1);
   color: rgba(255, 255, 255, 1);
    padding: 12px 30px; border: none;
     cursor: pointer; transition: 0.3s;
      font-weight: 700;
       font-size: 16px; }

.marquee-section {
  background: rgba(0, 42, 71, 1);
  padding: 50px 0;
  overflow: hidden;
}

.marquee {
  width: 100%;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.marquee-content {
  display: flex;
  gap: 50px;
}

.marquee-content span {
  font-weight: 700;
  font-size: 128px;
  white-space: nowrap;
  color: rgba(0, 42, 71, 1);
 
  text-shadow: 0px 0px 2px white;
}




@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.logo-footer-img {
  max-width: 360px;
  width: 100%;
  height: auto;
  padding-top: 30px;
}


.nav-footer {
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.link-footer {
  text-decoration: none;
  color: rgba(0, 164, 222, 1);
  font-weight: 700;
  font-size: 16px;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}


.footer-text-section {
  width: 100%;
  background: rgba(0, 42, 71, 1);
}

.footer-text {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 42px 0;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}

.footer-text a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-text a:hover {
  color: rgba(0, 164, 222, 1);
}

  /* Über uns*/
  .offer-uber-uns{
   background: linear-gradient(
    180deg,
    rgba(241, 241, 241, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );

    }
 
.offer-content-uber-uns{
  position: relative;
  padding: 60px 40px;
  height: 100%;
    
  display: flex;
  flex-direction: column;
  justify-content: center;

}
.offer-bg{
background: url(../img/deco-1.png) no-repeat center;
background-size: cover;
min-height: 400px;
display: flex;
    align-items: center;
}
.offer-image-uber-uns{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
  height: auto; 
  overflow: visible;
}

.offer-image-uber-uns::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  max-width: 500px;
  max-height: 560px;
  background: rgba(0, 164, 222, 1);
  clip-path: polygon(
    50% 10%, 
  90% 30%,
  90% 70%,
  50% 90%, 
  10% 70%,
  10% 30%
  );
  z-index: 1;
  
}
.offer-image-uber-uns img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  transform: scale(.9);
}

.breadcrumbs {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
}

.breadcrumbs a {
  text-decoration: none;
  color:rgba(0, 42, 71, 1);
  font-weight: 400;
    transition: all 0.3s ease;
}

.breadcrumbs a:hover {
    text-decoration: none;
    color: rgba(0, 164, 222, 1);
    font-weight: 400;
    transition: all 0.3s ease;
}

.separator {
  color:rgba(0, 42, 71, 1);
}

.current {
  color: rgba(0, 42, 71, 1);
  font-weight: 400;
  text-decoration: none;
}
.about-section img {
  height: 100%;
  object-fit: cover;
}

.about-scroll {
  height: 400px; 
  overflow-y: auto;
  padding-right: 10px; 

}


.about-scroll::-webkit-scrollbar {
  width: 4px;
}

.about-scroll::-webkit-scrollbar-track {
  background: rgba(0, 164, 222, 1); 
}

.about-scroll::-webkit-scrollbar-thumb {
  background-color: rgba(0, 42, 71, 1);
  border-radius: 10px; 
}
.about-title{
    font-weight: 700;
    font-size: 16px;
    color: rgba(0, 42, 71, 1);
    }

    .hero-section{
      background: rgba(0, 42, 71, 1) ;
       position: relative; 
  overflow: hidden;  
    }

    .button-hero {
  display: flex;
  justify-content: center;
  align-items: center;   
}
.hero-btn {
  display: inline-block;
  padding: 16px 32px;
  background-color: rgba(0, 164, 222, 1);
  color: rgba(255, 255, 255, 1);
  font-weight: 700;
    font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 65px;
}
.hero-btn:hover {
  background-color: rgba(0, 42, 71, 1);
  color: rgba(255, 255, 255, 1);
  transition: all 0.3s ease;
}
.hero-title {
  font-weight: 700;
  font-size: 64px;
  color: rgba(255, 255, 255, 1);
  text-align: center;
  padding: 60px 40px;
  margin-top: 100px;
  margin-bottom: 30px;
  padding: 0;
  
}
.hero-text{
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 1);
  text-align: center;
  margin-bottom: 67px;
}
.brands-title {
  font-weight: 700;
  font-size: 24px;
  color:rgba(0, 164, 222, 1);
  text-align: center;
  margin-top: 60px;
  padding-bottom: 90px;
}

.hero-deco {
  position: absolute;
  max-width: 390px;
 pointer-events: none;
  margin-top: 15px;
  margin-bottom: 15px;
 z-index: 0;

  width: 100%;
  height: auto;
}

.left-top {
  top: 0;
  left: 0;
}

.right-bottom {
  bottom: 0;
  right: 0;
}
.partner-slider-arrows{
   display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 60px;
 }

 .section-title{
    font-weight: 700;
    font-size: 64px;
    color: rgba(0, 42, 71, 1);
    text-align: center;
    margin-top: 60px;
    margin-bottom: 65px;
 }
.info-card{
    background: linear-gradient(
    180deg,
    rgba(241, 241, 241, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
    padding: 33px 28px;
 
    border: 1px solid rgba(0, 164, 222, 1);
    border-radius: 0px;
display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.info-card div h5{
    font-weight: 700;
    font-size: 16px;
    color: rgba(0, 164, 222, 1);
    margin-bottom: 20px;
}
.info-card div p{
    font-weight: 400;
    font-size: 16px;
    color: rgba(0, 42, 71, 1);
    margin-bottom: 20px;
}
.info-card-link{
  display: inline-flex;
  gap: 8px;
  font-size: 16px;
  color: rgba(0, 164, 222, 1);
  font-weight: 700;
  text-decoration: none;
  

}
.info-card-arrow{
width: 13px;
height: auto;
}
.services-intro{
background: #F8F8F8;
   overflow: hidden;
    padding-top: 90px;
}
.services-intro-content{
  position: relative;
  padding: 60px 40px;
  height: 100%;
    
  display: flex;
  flex-direction: column;
  justify-content: center;

}
.services-intro-image{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
  height: auto; 
  overflow: visible;
}

.services-intro-image::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  max-width: 500px;
  max-height: 560px;
  background: rgba(0, 164, 222, 1);
  clip-path: polygon(
    50% 10%, 
  90% 30%,
  90% 70%,
  50% 90%, 
  10% 70%,
  10% 30%
  );
  z-index: 1;
  
}
.services-intro-image img {
  position: relative;
  z-index: 2; 
}
.search-section {
      padding-top: 60px;
 
}

.search-form {
  margin: 0;
  width: 100%; 
}

.form-container {
  width: 100%;  
  padding: 45px 35px; 
  background: rgba(0, 164, 222, 1);
  box-sizing: border-box;
}

.form-inner {
  display: flex;
  align-items: center;
  width: 100%;
  background: #fff;
}

.form-control-search-input {
  flex: 1;
  height: 60px;
  border: none;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 300;
  color: rgba(129, 129, 129, 1);
  outline: none;
}

.form-control-search-input::placeholder {
  color: rgba(129, 129, 129, 1);
}

.search-btn {
  height: 60px;
  width: 60px;
  border: none;
  background: rgba(0, 42, 71, 1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.search-btn:hover {
  background: rgba(0, 164, 222, 1);
}


.angebote-section {
  padding: 80px 0;
}
.angebote-title {
  font-weight: 700;
  font-size: clamp(32px, 5vw, 64px);
  color: rgba(0, 42, 71, 1);
  text-align: center;
  margin-bottom: 60px;
}

 .angebote-card {
    display: flex;
    position: relative;
    padding: 40px;
    overflow: hidden;
    z-index: 1;
    flex-direction: column;
    justify-content: space-between;
}

.angebote-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: url("../img/deco-1.png") no-repeat center center;
  background-size: cover;
  pointer-events: none;
  z-index: 0;
}
.angebote-card > * {
  position: relative;
  z-index: 2;
}
.angebote-card--light {
  background: linear-gradient(
    180deg,
    rgba(241, 241, 241, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  border: 1px solid rgba(0, 164, 222, 1);
}
.angebote-card--dark {
  background-color: rgba(0, 42, 71, 1);
}
.angebote-card__title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
}
.angebote-card__text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}
.angebote-card--light .angebote-card__title {
  color: rgba(0, 164, 222, 1);
}
.angebote-card--light .angebote-card__text {
  color: rgba(0, 42, 71, 1);
}
.angebote-card--dark .angebote-card__title,
.angebote-card--dark .angebote-card__text {
  color: rgba(255, 255, 255, 1);
}
.angebote-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}
.angebote-card--light .angebote-card__link {
  color: rgba(0, 164, 222, 1);
}
.angebote-card--dark .angebote-card__link {
  color:  rgba(255, 255, 255, 1);
}

.visum-advantages-title{
  font-size: 64px;
  font-weight: 700;
  color: rgba(0, 42, 71, 1);
}
.visum-advantages-subtitle{
  font-size: 24px;
  font-weight: 700;
  color: rgba(0, 164, 222, 1);
}
.adv-card {
    background-color: rgba(0, 42, 71, 1);
    background-image: url(../img/deco-1.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    padding: 50px 18px 30px 18px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
}

.adv-card > * {
  position: relative;
  z-index: 2;
}

.adv-card h5 {
    font-weight: 700;
    font-size: 15px;
    color: rgba(0, 164, 222, 1);
    margin-bottom: 65px;
}
.adv-card p {
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 1);
}
.button-adv{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 65px;

}

.btn-adv{
  display: inline-block;
  padding: 16px 32px;
  background-color: rgba(0, 164, 222, 1);
  color: rgba(255, 255, 255, 1);
  font-weight: 700;
    font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-adv:hover {
  background-color: rgba(0, 42, 71, 1);
  color: rgba(255, 255, 255, 1);
  transition: all 0.3s ease;
}
/* =========================
 /* =========================
   LEFT COLUMN BACKGROUND
========================= */
#stepper-col {
  position: relative;
  padding: 40px;
  overflow: hidden;
}

#stepper-col::before {
  content: "";
  position: absolute;
  inset: 0;
 background: url(../img/deco-1.png) no-repeat 70% 100%;

  transform: rotate(180deg);
  z-index: 0;
}

#stepper-col > * {
  position: relative;
  z-index: 1;
}


/* =========================
   STEPPER INTRO
========================= */
.stepper-intro h3 {
  font-size: 64px;
  font-weight: 700;
  color: rgba(0, 42, 71, 1);
  margin-bottom: 65px;
}


/* =========================
   STEPPER NAVIGATION
========================= */
#stepper {
  position: relative;
}

#stepper .nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  font-size: 18px;
  font-weight: 700;
  color: rgba(0, 42, 71, 1);
  transition: 0.3s ease;
}

/* Connector line */
#stepper .nav-link:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 29px;
  top: 92px;
  height: 40px;
  border-left: 3px dashed rgba(0, 42, 71, 1);
  z-index: 2;
}

/* Hexagon */
#stepper .badge {
  width: 60px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 1);
  background: rgba(0, 42, 71, 1);
  clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  transition: 0.3s ease;
}

/* Active / Completed */
#stepper .nav-link.active,
#stepper .nav-link.completed {
  color: rgba(0, 164, 222, 1);
}

#stepper .nav-link.active .badge,
#stepper .nav-link.completed .badge {
  background: rgba(0, 164, 222, 1);
}

#stepper .nav-link.completed:not(:last-child)::after {
  border-left: 3px dashed rgba(0, 164, 222, 1);
}

/* Hover */
#stepper .nav-link:hover {
  color: rgba(0, 164, 222, 0.8);
}

#stepper .nav-link:hover .badge {
  background: rgba(0, 164, 222, 0.8);
}


/* =========================
   FORM CARD (STEP 2 + 3)
========================= */
.personal-card,
.upload-card {
  background: rgba(0, 164, 222, 1);
  padding: 40px;
  
}

.form-title,
.upload-title {
  font-size: 24px;
  font-weight: 700;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 20px;
}

.upload-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 1);
}

.form-control-custom {
  width: 100%;
  padding: 14px;
  margin-bottom: 20px;
  border: none;
  outline: none;
  appearance: none;
  font-size: 14px;
  color: rgba(0, 42, 71, 1);
}

.form-control-custom::placeholder {
  color: rgba(0, 42, 71, 1);
  opacity: 1;
}


/* =========================
   BUTTONS
========================= */
.btn-custom {
  background: rgba(0, 42, 71, 1);
  color: rgba(255, 255, 255, 1);
  border: none;
  font-size: 16px;
  font-weight: 700;
  transition: 0.3s;
  padding: 15px 30px;
   text-decoration: none;
   border: 0px;
}

.btn-custom:hover {
  opacity: 0.9;
}

.btn-custom.next-step {
  padding: 16px 40px;
  font-size: 20px;
  margin-top: 15px;
  display: inline-flex;   
  align-items: center;      
  justify-content: center;   
  width: fit-content;         
}

/* =========================
   FILE UPLOAD
========================= */
.upload-input {
  display: none;
}

.upload-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.upload-group {
  display: flex;
  flex-direction: column;
}

.upload-btn {
  display: inline-block;
  width: fit-content;
  padding: 14px 28px;
  background: rgba(0, 42, 71, 1);
  color: rgba(255, 255, 255, 1);
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  text-align: center;
  text-decoration: none;
}

.upload-btn:hover {
  opacity: 0.9;
}

.file-name,
#fileName {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
}

.button-partner{
display: flex;
  justify-content: center;
  align-items: center; 
}
 
.btn-partner {
  display: inline-block;
  padding: 16px 32px;
  background-color: rgba(0, 164, 222, 1);
  color: rgba(255, 255, 255, 1);
  font-weight: 700;
    font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 65px;
}
.btn-partner:hover {
  background-color: rgba(0, 42, 71, 1);
  color: rgba(255, 255, 255, 1);
  transition: all 0.3s ease;
}
.partner{
    background: url(../img/Group3.png) no-repeat right top;
    margin-top: 60px;}

.partner-title{
        padding: 60px 40px;
        font-weight: 700;
        font-size: 64px;
        color: rgba(0, 42, 71, 1);
        text-align: center;
    }
.partner-text{
        padding: 0px 40px;
        font-weight: 400;
        font-size: 16px;
        color: rgba(0, 42, 71, 1);
        text-align: center;
        margin-bottom: 67px;
    }
 .vorteile { 
  background: rgba(0, 42, 71, 1);
   padding: 80px 0;
    position: relative;
     z-index: 2; }

.vorteile-title{
  font-weight: 700;
  font-size: 64px;
  color: rgba(255, 255, 255, 1);
  text-align: center;
  margin-bottom: 65px;
  z-index: 2;
  position: relative;
}


.vorteile-slider {
  margin-bottom: 50px;
  overflow: hidden;
}

.vorteile-card {
  background: linear-gradient(
    180deg,
    rgba(241, 241, 241, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );;
  padding: 40px 30px;
  margin: 0 15px;
 height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.3s ease;
  
}
.vorteile-slider .slick-track {
  display: flex !important;
}

.vorteile-slider .slick-slide {
  height: auto;
}

.vorteile-slider .slick-slide > div {
  height: 100%;
}

.vorteile-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: rgba(0, 164, 222, 1);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.vorteile-card p {
  font-size: 16px;
  color: rgba(0, 42, 71, 1);
  line-height: 1.6;
  font-weight: 400;
}

/* Стрілки */
.vorteile-arrows {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}
.vorteile .container {
  position: relative;
  z-index: 2;
}
.vorteile-deco{
   position: absolute;
  max-width: 390px;
  width: 100%;
  height: auto;
  pointer-events: none;
  z-index: 0;

}
.vorteile-deco-tl {
  top: 15px;
  left: 0;
}

.vorteile-deco-br {
  bottom: 15px;
  right: 0;
}
.business-fields{
   font-weight: 700;
    font-size: 64px;
    color: rgba(0, 42, 71, 1);
    text-align: center;
    margin-top: 60px;
    margin-bottom: 65px;
 }

 .business-fields-title{
    font-weight: 700;
    font-size: 64px;
    color: rgba(0, 42, 71, 1);
    text-align: center;
    margin-bottom: 20px;
 }
.card-business-fields {
  background: linear-gradient(
    180deg,
    rgba(241, 241, 241, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  padding: 33px 28px;
  border: 1px solid rgba(0, 164, 222, 1);
  border-radius: 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  align-items: flex-start;
  height: 275px;
}
.card-business-fields h3 {
    font-weight: 700;
    font-size: 16px;
    color: rgba(0, 164, 222, 1);
    margin-bottom: 20px;
}
.card-business-fields p{
    font-weight: 400;
    font-size: 16px;
    color: rgba(0, 42, 71, 1);
    flex-grow: 1;
}
.more-link{
  display: inline-flex;
  gap: 8px;
  font-size: 16px;
  color: rgba(0, 164, 222, 1);
  font-weight: 700;
  text-decoration: none;

}

 /*Jobs фільтри*/
.jobs-section {
  padding: 48px 0;
  
}

/* Заголовок */
.jobs-title {
  font-size: 32px;
  font-weight: 700;
  color: rgba(0,42,71,1);
}

/* Фільтри */
.filter-card {
  border: 1px solid rgba(0,164,222,0.5);
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  background: linear-gradient(180deg, rgba(241,241,241,1) 0%, rgba(255,255,255,1) 100%);
  padding: 16px;
}

.filter-title {
  font-weight: 700;
  color: rgba(0,164,222,1);
}


  .filter-group-title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(0, 164, 222, 1);
  padding-bottom: 8px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(0, 42, 71, 1);
}



.form-check-label {
  font-size: 14px;
  cursor: pointer;
}

.form-check-input:checked {
  background-color: rgba(0,164,222,1);
  border-color: rgba(0,164,222,1);
}

/* Карти вакансій */
.job-card {
    border: 1px solid rgba(0, 164, 222, 0.5);
    margin-bottom: 16px;
    padding: 16px 10px;
    background: linear-gradient(180deg, rgba(241, 241, 241, 1) 0%, rgba(255, 255, 255, 1) 100%);
    transition: all 0.25s ease;
}

.job-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}


/* Рядок вакансії */
.job-card-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

/* Інформація про вакансію */
.job-info h5 {
  font-size: 16px;
  font-weight: 700;
  color: rgba(0,42,71,1);
      padding-right: 70px;
}

.job-location {
  color: rgba(0,42,71,1);
  font-size: 16px;
  font-weight: 400;
}

/* Дата */
.job-date small {
  color: rgba(0,42,71,1);
  font-size: 14px;
  font-weight: 400;
}

/* Кнопка */


.job-btn {
  background-color: rgba(0,164,222,1);
  color: rgba(255, 255, 255, 1);
  border: none;
  font-weight: 400;
  font-size: 14px;
  padding: 8px 16px;
  transition: background-color 0.2s ease, transform 0.2s ease;
  border-radius: 0px;
}

.job-btn:hover {
  background-color: rgba(0,140,190,1); 
  color: rgba(255, 255, 255, 1);
  font-weight: 400; 
  font-size: 14px; 
  transform: translateY(-1px);
}
.job-btn:focus,
.job-btn:active {
  color: rgba(255, 255, 255, 1);
  font-weight: 400;
}

.button-job-card {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.btn-job-card {
  display: inline-block;
  padding: 16px 32px;
  background-color: rgba(0, 164, 222, 1);
  color: rgba(255, 255, 255, 1);
  font-weight: 700;
    font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}



/* Мобільні пристрої */
@media (max-width: 992px) {
  .job-date.text-md-end,
  .job-action.text-md-end {
    text-align: left !important;
    margin-top: 8px;
  }

  .job-info.d-flex {
    margin-bottom: 8px;
  }
}

.ratgeber-title{
  font-size: 64px;
  font-weight: 700;
  color: rgba(0, 42, 71, 1);
}

.ratgeber-card {
  background-color: rgba(0, 42, 71, 1);
  background-image: url("../img/deco-1.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  position: relative;
  padding: 50px 25px 30px 25px;
  overflow: hidden;

  height: 100%;
  display: flex;
  flex-direction: column;

 justify-content: flex-start; 
  align-items: stretch;
text-align: left;      
}

.ratgeber-card > * {
  position: relative;
  z-index: 2;
}

.ratgeber-card h5 {
  font-weight: 700;
  font-size: 16px;
  color: rgba(0, 164, 222, 1);
     margin-bottom: 35px;
}

.ratgeber-card p {
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 1);
}

.ratgeber-btn{
  border: 0px;
  display: inline-block;
  padding: 16px 32px;
  background-color: rgba(0, 164, 222, 1);
  color: rgba(255, 255, 255, 1);
  font-weight: 700;
    font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;  

}
.button-ratgeber{
display: flex;
  justify-content: center;
  margin-top: 50px;
}


/* news */
/* SECTION */

.news {
  padding: 62px 0;
  
}

.news__title {
  text-align: center;
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 60px;
  color: rgba(0, 42, 71, 1);
}

.news__row {
  row-gap: 30px;
}

.news__col {

}

/* CARD */

.news-card {
    background: rgba(0, 164, 222, 1);
    overflow: hidden;
    transition: 0.3s ease;
    height: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}



/* IMAGE */

.news-card__image {
  position: relative;
  overflow: hidden;
}

.news-card__image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.news-card__date {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(0, 42, 71, 1);
  color:rgba(255, 255, 255, 1);
  font-size: 12px;
  font-weight: 300;
  padding: 6px 14px;
}

/* CONTENT */

.news-card__content {
  background-color:rgba(0, 164, 222, 1);
  padding: 25px;
  min-height: 150px;
  display: flex;
  align-items: center;
}

.news-card__text {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color:rgba(255, 255, 255, 1);
}

/* BUTTON */

.news__button-wrapper {
  text-align: center;
  margin-top: 60px;
}

.news__button {
  display: inline-block;
  padding: 14px 35px;
  background-color: rgba(0, 164, 222, 1);
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 700;
}

/* news-page */


.news-page-section {
  padding: 60px 0;
}

.news-page-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.news-page-image {
  width: 100%;
  height: auto;
  display: block;
}

.news-page-date {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(0, 42, 71, 1);
  color: rgba(255, 255, 255, 1);
  padding: 8px 16px;
  font-weight: 300;
  font-size: 16px;
}

.news-page-content {
  margin-top: 30px;
}

.news-page-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.news-page-subtitle {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  color: rgba(0, 164, 222, 1);
}

.news-page-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(0, 42, 71, 1);
}
.zeitarbeit{
margin: 67px 0px;
}
.no-resume{
  font-size: 16px;
  font-weight: 400;
color: #fff;
display: inline-block;
margin-top: 10px;
}
.dop-form-info{
font-size: 12px;
color:#ffffff;
margin-top: 15px;
}
#stepper .nav-link.disabled,
#stepper .nav-link:disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

.form-control-custom.is-invalid {
  border: 1px solid #dc3545 !important;
  box-shadow: none;
}
.vacansia-info {
    background: #00a4de;
    padding: 20px;
    color: #fff;
}
.vacansia-info ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}
.vacansia-info ul li {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
    flex-direction: row;
    align-items: center;
}
.vacansia-info ul li i{
font-size: 26px;
}
.vacansia-info ul li span{
 font-weight: 700;
}
.title-vacansia-info {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
    color: #002a47;
}
.dip-info-vac{
  background: #002a47;
  padding: 20px;
  color: #fff;
  margin: 30px 0px;
}
.dip-info-vac-title{
display: block;
font-size: 20px;
font-weight: 700;
color: #00a4de;
margin-bottom: 20px;
text-transform: uppercase;
}
.job-date{
display: flex;
gap: 10px;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
}
.job-info{
width: 50%;
}
.mse2_pagination{
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.page-item:first-child .page-link {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}
.page-item:last-child .page-link {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}
.disabled>.page-link, .page-link.disabled {
    color: #002a47;
    pointer-events: none;
    background-color: #f6f6f6;
    border-color: #00a4de;
}
.page-link {
    position: relative;
    display: block;
    padding: 10px 18px;
    font-size: 16px;
    color: #00a4de;
    text-decoration: none;
    background-color: #f6f6f6;
    border: 1px;
    border-color: #00a4de;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.active>.page-link, .page-link.active {
    z-index: 3;
    color: #fff;
    background-color: #00a4de;
    border-color: #00a4de;
}


.callback-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.3s ease;
}

.callback-modal.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.callback-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

.callback-modal__dialog {
    position: relative;
    z-index: 2;
    width: calc(100% - 30px);
    max-width: 560px;
    margin: 60px auto;
    background: #fff;
    border-radius: 0px;
    padding: 35px 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.callback-modal__close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.callback-form-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
}

.callback-form-subtitle {
    font-size: 16px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 25px;
}

.callback-form__group {
    margin-bottom: 18px;
}

.callback-form__group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
}

.callback-form__group input,
.callback-form__group textarea {
    width: 100%;
    border: 1px solid #dcdcdc;
    border-radius: 0px;
    padding: 14px 16px;
    font-size: 15px;
    outline: none;
    transition: 0.3s ease;
}

.callback-form__group input:focus,
.callback-form__group textarea:focus {
    border-color: #111;
}

.callback-form__btn {
    width: 100%;
    border: none;
    border-radius: 0px;
    padding: 20px 26px;
    background: #00a4de;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
}

.callback-form__btn:hover {
    opacity: 0.9;
}

.callback-form__privacy {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.4;
    color: #777;
}

.error {
    display: block;
    margin-top: 6px;
    color: #d10000;
    font-size: 13px;
}

.ajax_form .af-message-success {
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #eaf7ea;
    color: #226b22;
}

.ajax_form .af-message-error {
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #fdecec;
    color: #a10000;
}

body.callback-modal-open {
    overflow: hidden;
}

@media (max-width: 767px) {
    .callback-modal__dialog {
        margin: 30px auto;
        padding: 28px 18px;
    }

    .callback-form-title {
        font-size: 24px;
    }
}



.checkbox-label {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
    cursor: pointer;
    margin-bottom: 24px;
    color: #fff;
}
.checkbox-label a{
    color: rgba(0, 42, 71, 1);
    font-weight: 600;
    text-decoration: none;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    flex: 0 0 auto;
}
.contact-form input[type="checkbox"] {
    width: 20px;
    padding: 14px;
    margin-bottom: 20px;
    border: none;
    outline: none;
    font-weight: 400;
    color: rgba(0, 42, 71, 1);
    font-size: 14px;
    box-sizing: border-box;
}


:root {
  --screen-width: 320px;
  --screen-height: 100vh;
  --header-bg-color: #6aaaB7;
  --splash-bg-color: rgba(0, 42, 71, 1);
}

.nav__toggle {
    display: inline-block;
    position: absolute;
    z-index: 10;
    padding: 0;
    border: 0;
    background: transparent;
    outline: 0;
    right: 15px;
    top: 23px;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.15s linear;
}
.nav__toggle:hover, .nav__toggle:focus {
  background-color: rgba(0, 0, 0, 0.5);
}
.nav__menu {
    display: flex;
    flex-direction: column;
    height: var(--screen-height);
    position: relative;
    z-index: 5;
    visibility: hidden;
    margin-top: 0;
    list-style-type: none;
    padding-left: 0;
    padding-top: 100px;
}
.nav__item {
  opacity: 0;
  transition: all 0.3s cubic-bezier(0, 0.995, 0.99, 1) 0.3s;
}
.nav__item:nth-child(1) {
  transform: translateY(-40px);
}
.nav__item:nth-child(2) {
  transform: translateY(-80px);
}
.nav__item:nth-child(3) {
  transform: translateY(-120px);
}
.nav__item:nth-child(4) {
  transform: translateY(-160px);
}
.nav__item:nth-child(5) {
  transform: translateY(-200px);
}
.nav__link {
  color: white;
  display: block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 1.25rem;
  text-decoration: none;
  padding: 1rem;
}
.nav__link:hover, .nav__link:focus {
  outline: 0;
  background-color: rgba(0, 0, 0, 0.2);
}

.menuicon {
  display: block;
  cursor: pointer;
  color: white;
  transform: rotate(0deg);
  transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.menuicon__bar, .menuicon__circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
}
.menuicon__bar {
  transform: rotate(0deg);
  transform-origin: 50% 50%;
  transition: transform 0.25s ease-in-out;
}
.menuicon__circle {
  transition: stroke-dashoffset 0.3s linear 0.1s;
  stroke-dashoffset: 144.513262038;
  stroke-dasharray: 144.513262038;
}


.nav:target > .splash::after,
.nav--open > .splash::after {
  transform: scale(1);
}
.nav:target .menuicon,
.nav--open .menuicon {
  color: white;
  transform: rotate(180deg);
}
.nav:target .menuicon__circle,
.nav--open .menuicon__circle {
  stroke-dashoffset: 0;
}
.nav:target .menuicon__bar:nth-child(1), .nav:target .menuicon__bar:nth-child(4),
.nav--open .menuicon__bar:nth-child(1),
.nav--open .menuicon__bar:nth-child(4) {
  opacity: 0;
}
.nav:target .menuicon__bar:nth-child(2),
.nav--open .menuicon__bar:nth-child(2) {
  transform: rotate(45deg);
}
.nav:target .menuicon__bar:nth-child(3),
.nav--open .menuicon__bar:nth-child(3) {
  transform: rotate(-45deg);
}
.nav:target .nav__menu,
.nav--open .nav__menu {
  visibility: visible;
}
.nav:target .nav__item,
.nav--open .nav__item {
  opacity: 1;
  transform: translateY(0);
}
.mob-header {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding: 10px 0px;
    z-index: 99999;
    background: #002a47;
}


@media (max-width: 767px), (hover: none) and (pointer: coarse) {
.offer-title {
    font-weight: 700;
    font-size: 36px;
    color: rgba(0, 42, 71, 1);
}
.zeitarbeit h2 {
    font-weight: 700;
    font-size: 36px;
    color: rgba(0, 42, 71, 1);
    text-align: center;
}
.dein-job-title h2 {
    padding: 60px 40px;
    font-weight: 700;
    font-size: 36px;
    color: rgba(255, 255, 255, 1);
    text-align: center;
}
.vorteile-title h2 {
    font-weight: 700;
    font-size: 36px;
    color: rgba(0, 42, 71, 1);
    text-align: center;
    margin-top: 60px;
}
.versprechen h2 {
    font-weight: 700;
    font-size: 36px;
    color: rgba(255, 255, 255, 1);
}
.dienst h2 {
    font-weight: 700;
    font-size: 36px;
    color: rgba(0, 42, 71, 1);
    padding-top: 65px;
    margin-bottom: 65px;
    text-align: center;
}
.tipps-content h2 {
    font-weight: 700;
    font-size: 32px;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 20px;
}
.visum-advantages-title {
    font-size: 36px;
    font-weight: 700;
    color: rgba(0, 42, 71, 1);
}
.hero-title {
    font-weight: 700;
    font-size: 32px;
    color: rgba(255, 255, 255, 1);
    text-align: center;
    padding: 60px 40px;
    margin-top: 100px;
    margin-bottom: 30px;
    padding: 0;
}
.stepper-intro h3 {
    font-size: 36px;
    font-weight: 700;
    color: rgba(0, 42, 71, 1);
    margin-bottom: 65px;
}
.partner-title {
    padding: 60px 40px;
    font-weight: 700;
    font-size: 36px;
    color: rgba(0, 42, 71, 1);
    text-align: center;
}
.vorteile-title {
    font-weight: 700;
    font-size: 36px;
    color: rgba(255, 255, 255, 1);
    text-align: center;
    margin-bottom: 65px;
    z-index: 2;
    position: relative;
}
.business-fields-title {
    font-weight: 700;
    font-size: 36px;
    color: rgba(0, 42, 71, 1);
    text-align: center;
    margin-bottom: 20px;
}
}
.nav--open{
justify-content: center;
}
.logo-top-mob{
width: 200px;
}