/* ------------------------------------------------ Sidebar ---------------------------------- */

.sidebar {
    background-color: #2240cd;
    align-self: start;
    display: flex;
    min-width: 240px;
    /* padding-bottom: 101px; */
    flex-direction: column;
    overflow: auto;
    align-items: center;
    width: 500px;
    height: 100vh;
    justify-content: space-evenly;
}

/* Ensure the sidebar is scrollable when content overflows */
@media (max-width: 991px) {
    .sidebar {
        width: 100%;
        /* Adjust width for smaller screens */
        min-width: auto;
        height: 100vh;
        overflow-y: auto;
    }
}

.image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    height: 360px;
    width: 380px;
    align-items: center;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 40px;
}
.background-image {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: center;
}
.foreground-image {
    aspect-ratio: 1.02;
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: 100%;
    align-self: stretch;
    min-width: 240px;
    /* margin: auto 0; */
    padding-top: 40px;
    padding-left: 40px;
    z-index: 1;
}
.hero-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    /* align-self: stretch; */
    position: relative;
    /* min-height: 693px; */
    align-items: center;
    overflow: hidden;
    justify-content: start;
    flex-wrap: wrap;
}

.hero-bg {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-img {
    margin-top: 14%;
    aspect-ratio: 1.02;
    object-fit: contain;
    object-position: center;
    width: 300px;
    /* align-self: stretch; */
    min-width: 240px;
    /* margin: auto 0; */
    z-index: 1;
}

.content-wrapper {
    display: flex;
    margin-top: 35px;
    width: 402px;
    max-width: 100%;
    flex-direction: column;
    font-family: Onest, sans-serif;
    color: #fff;
    text-align: center;
    justify-content: center;
    align-items: center;
}
@media (max-width:480px) {
    .content-wrapper{
        padding: 0px 20px;

    }
    .sidebar{
        height: fit-content;
        padding-bottom: 60px;
    }
  }
@media (max-width: 991px) {
    .content-wrapper {
        margin-top: 33px;
    }
}

.heading {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 0px;
}

.subheading {
    font-size: 20px;
    font-weight: 400;
    margin-top: 34px;
    margin-bottom: 20%;
}
.title {
    font-size: 28px;
    font-weight: 500;
}
.description {
    font-size: 18px;
    font-weight: 400;
}
.progress-indicators {
    display: flex;
    /* margin-top: 156px; */
    align-items: center;
    gap: 5px;
    justify-content: start;
    /* position: fixed;
    bottom: 9%; */
    margin-bottom: 8%;
}

/* @media (max-width: 991px) {
    .progress-indicators {
        margin-top: 40px;
    }
} */

.indicator {
    border-radius: 18px;
    width: 64px;
    height: 7px;
    margin: auto 0;
}

.indicator-active {
    background-color: #fff;
}

.indicator-inactive {
    background-color: var(--Primary-500, #5281ff);
}

/* ---------------------------------------------End Sidebar ---------------------------------- */

