*{
    font-family: "poppins", sans-serif !important;
}
h1{
    font-weight: 800 !important;
    font-size: 3rem !important;
}
h3{
    margin: 0 !important;
}
body{
    background-image: linear-gradient(176deg, #333333 40%, #f7f9fb calc(40% + 2px)) !important;
    background-size: cover;
    background-repeat: no-repeat;
}
.stepper-wrapper {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.stepper-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;

    @media (max-width: 768px) {
        font-size: 12px;
    }
}

.stepper-item::before {
    position: absolute;
    content: "";
    border-bottom: 2px solid #ccc;
    width: 100%;
    top: 20px;
    left: -50%;
    z-index: 2;
}

.stepper-item::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid #ccc;
    width: 100%;
    top: 20px;
    left: 50%;
    z-index: 2;
}

.stepper-item .step-counter {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ccc;
    margin-bottom: 6px;
    color: white;
}

.stepper-item.active {
    font-weight: bold;
}

.stepper-item.completed .step-counter {
    background-color: #00ABC8;
}

.stepper-item.completed::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid #00ABC8;
    width: 100%;
    top: 20px;
    left: 50%;
    z-index: 3;
}

.stepper-item:first-child::before {
    content: none;
}
.stepper-item:last-child::after {
    content: none;
}
.step-name{
    color: white;
}
.experience_dropdown{
    background-color: white;
    border-radius: 10px;
    margin-bottom: 20px;
}
.dropdown_header{
    cursor: pointer;
    padding: 20px;
}
.dropdown_content{
    display: none;
    padding: 20px;
}
.dropdown_active{
    display: block !important;
}
.header_active{
    border-bottom: 1px solid #e2e2e2;
}
.benefits_ul {
    list-style: none;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    padding: 0 !important;
}
.benefits_ul li {
    margin-bottom: 18px;
}
.active_package{
    border-radius: 8px;
    --bs-bg-rgb-color: var(--bs-light-rgb);
    background-color: var(--bs-light) !important;
}