*{
    margin: 0;
    border: 0;
    box-sizing: border-box;
    font-family: Kufam;
}
.hover{
    transition: all 0.2s;
    cursor: pointer;
}
.hover:hover{
    opacity: 0.8;
}
.overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.418);
    z-index: 9;
}

header{
    width: 100%;
    min-height: 80vh;
    background-color: #A498FE;
}
header nav ul li:not(li.select-li){
    padding-left: 10px;
}
header nav ul li a.nav-link{
    color: #455687;
    font-weight: bold;
    padding-left: 10px !important;
}
header nav ul li.active a{
    color:#FFF !important;
    background-color: #000;
    border-radius: 5px;
}
.main-title{
    font-size: 40px;
    font-weight: bold;
}
.main-desc{
    color: #3C3C3C;
    font-size: 20px;
}
@media (max-width:767px) {
    .main-title{
        font-size: 30px;
    }
    .main-desc{
        font-size: 16px;
    }
}
#unsere{
    height: 100vh; /* Adjust as needed */
    background: linear-gradient(to bottom, #fff 40%, #000 40%);
}
.swiper-button-next, .swiper-button-prev{
    top: 25% !important;
    color: #A498FE !important;
    font-weight: bold !important;
    font-size: 24px; /* Adjust arrow icon size */
    width: 40px;      /* Adjust button size */
    height: 40px;     /* Adjust button size */
}
.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 24px !important; /* Adjust size of arrow icon if it’s controlled by font-size */
  }
  .swiper-button-next{
    right: -7px !important;
  }
  .swiper-button-prev{
    left: -7px !important;
  }
  .dien{
    background-color: #000;
  }
  footer{
    background: url(../img/footer-bg.png);
    min-height: 50vh;
    background-repeat: no-repeat;
    width: 100%;
    padding-top: 40px;
    overflow: hidden;
  }
  #map-container{
    overflow: hidden; /* Ensure content doesn’t overflow the trapezoid */
  position: relative;
  clip-path: polygon(0% 32.5%, 100% 0%, 100% 100%, 0% 100%);
  margin-left: 5%;
  }
  @media (max-width:992px) {
    footer{
        background:none ;
        background-color: #fff;
    }
    #map-container{
      clip-path:none;
      margin-left: 0;
      border-radius: 15px;
      }
  }
  .float-phone{
    position: absolute;
    right: 20px;
    z-index: 111;
    top: 0;
    animation: floating 2s infinite ease-in;
  }
  .show-phone{
    background-color:#A498FE ;
  }
  .show-phone a{
    color: #000;
  }
  .show-phone .fa-phone{
    font-size: 25px;
  }

  @keyframes floating {
    50%{
        transform: translateY(5px);
    }
    100%{
        transform: translateY(0px);
    }
  }
  .steps{
    background-color: #A498FE;
  }
  /* Step indicator and connector styling */
.step-indicator {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background-color: #fff; /* Default background */
    border: 1px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #000;
    position: relative; /* Align with the connector */
  }
  
  .step-indicator.active {
    background-color: #544E82; /* Active step color */
    color: #FFF;
  }
  
  .step-indicator.completed {
    background-color: #544E82; /* Completed step color */
    color: #FFF;
  }
  
  .step-connector {
    width: 25px; /* Adjust the width */
    height: 2px;
    background-color: #FFF; /* Connectors with same color as completed and active */
    margin: 0; /* Remove the space between indicator and connector */
    position: relative; /* Aligning connectors */
    top:17px; /* Connect the top and bottom perfectly */
  }
  .check-card{
    cursor: pointer;
  }
  .check-card:hover, .check-card.active{
    background-color: #F8F7FF;
    border: 1px solid #A498FE;
  }
  .custom-range {
    -webkit-appearance: none; /* Remove default styling */
    width: 100%; /* Full width */
    height: 4px; /* Track height */
    background: #D8D7D7; /* Track color */
    outline: none; /* Remove outline */
    border-radius: 2px; /* Rounded corners for the track */
  }
  
  .custom-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 6px; /* Thumb width */
    height: 18px; /* Thumb height */
    background-color: #A498FE; /* Thumb color */
    cursor: pointer;
  }
  
  .custom-range::-moz-range-thumb {
    width: 6px; /* Thumb width */
    height: 18px; /* Thumb height */
    background-color: #A498FE;
    cursor: pointer;
  }
  /* Position the number under the thumb */
#rangeValue {
    position: absolute;
    top: 25px; /* Adjust as needed to move below the slider */
    left: 50%;
    font-size: 18px;
    color: #007773;
  }
  .yes-no-btn{
    background-color: #A498FE !important;
    width: 200px;
    color: #fff !important;
  }