.why-savax {
    padding-bottom: 2%;
}

.why-savax .text {
    font-size: calc(1.2vw + 0.1rem);
    line-height: calc(2vw + 0.1rem);
    color: #005881;
}

/*  */

.accordion {
    width: 100%;
    background-image: url('/img/why-savax.png');
    background-position: center;
    background-size: cover;
    height: 600px;
    /* max-width: 700px;
    background-color: white; */
    margin-top: 2%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.accordion .inner-container {
    padding: 6%;
}

.accordion-item {
    transition: all 0.3s ease;
    border-bottom: solid 1px #ffffff33;
    width: 60%;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-title {
    display: flex;
    align-items: center;
    column-gap: 20px;
    width: 100%;
    padding: 0.9rem 0px;
    /* background-color: white; */
    color: white;
    font-size: calc(1.7vw + 0.1rem);
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.accordion-title:hover {
    background-color: var(--background-light);
}

.accordion-title svg {
    transition: transform 0.3s ease;
    width: 35px;
}

.accordion-title.active svg {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    background-color: var(--background-light);
    /* padding: 0 1.5rem; */
    transition: all 0.3s ease;
}

.accordion-content p {
    padding-bottom: 1em;
    font-size: calc(0.9vw + 0.1rem);
    line-height: calc(1.2vw + 0.1rem);
    color: #eceeef;
}

/* savax limited */
.Savax-limited-overview .sub-heading {
    margin-bottom: 1%;
}

.Savax-limited-overview .text {
    font-size: calc(1.2vw + 0.1rem);
    line-height: calc(2vw + 0.1rem);
    color: #2e8b57;
}

/* how it work */
.how-it-work .row.heading-container {
    align-items: center;
    background-color: #005881;
    justify-content: space-between;
    box-shadow: 10px 0px 34px -17px rgb(0 0 0 / 20%);
    padding: 3%;
    border-radius: 14px;
}

.how-it-work .sub-heading {
    line-height: calc(2.5vw + 0.1rem);
    color: #ffffff;
}

.how-it-work .col1 {
    width: 23%;
}

.how-it-work .col2 {
    width: 79%;
}

.how-it-work .text {
    font-size: calc(1.1vw + 0.1rem);
    color: white;
}

.how-it-work .steps-container {
    justify-content: space-between;
}

.investment-container {
    margin-top: 5%;
    display: flex;
    width: 100%;
    /* max-width: 1200px; */
    background-color: white;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 10px 0px 34px -17px rgba(0, 0, 0, 0.75);

}

.timeline {
    width: 35%;
    background-color: #f6f6f6;
    padding: 30px 20px;
    position: relative;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    cursor: pointer;
    position: relative;
}

.step-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    background-color: #e9ecef;
    color: #6c757d;
    font-weight: bold;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background-color: #007bb4;
    color: white;
}

.step-content {
    flex-grow: 1;
}

.step-title {
    font-size: calc(1.1vw + 0.1rem);
    font-weight: bold;
    color: #495057;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.step-description {
    color: #000102;
    font-size: 0.85rem;
}

.timeline-line {
    position: absolute;
    left: 9%;
    top: 70px;
    bottom: 0;
    width: 2px;
    background-color: #dee2e6;
    z-index: 0;
}

.custom-slider-container {
    width: 65%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.investment-slider {
    width: 90%;
}

.slider-image {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
}

/* Slick Slider Custom Arrows */
.slick-prev,
.slick-next {
    width: 40px;
    height: 40px;
    color: white;
    font-size: 23px;
    background-color: #007bb4;
    border-radius: 50%;
    display: flex !important;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.slick-prev:before,
.slick-next:before {
    content: '';
    display: none;
}

.slick-prev:hover,
.slick-next:hover {
    color: white;
    background-color: rgba(2, 55, 111, 0.982);
}

.slick-slide img {
    display: inline !important;
    text-align: center;
}

.slick-slide {
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.slick-next:focus,
.slick-next:hover,
.slick-prev:focus,
.slick-prev:hover {
    background-color: #007bb4;
}

/*  */
.last-section .container {
    display: flex;
    margin-top: 3%;
    justify-content: space-between;
}

.last-section .card {
    width: 30%;
    display: flex;
    flex-direction: column;
    row-gap: calc(0.5vw + 0.1rem);
}

.last-section .card-title {
    color: #007bb4;
    font-size: calc(1.6vw + 0.1rem);
}

@media screen and (max-width:900px) {
    .why-savax .text {
        font-size: 0.9rem;
        line-height: 1.2;
        color: #005881;
    }

    .why-savax {
        padding-bottom: 6%;
    }

    .accordion {
        height: 527px;
    }

    .savex-advantage .sub-heading {
        margin-bottom: 5%;
    }

    .accordion-item {
        transition: all 0.3s ease;
        border-bottom: solid 1px #ffffff33;
        width: 100%;
    }

    .accordion-heading {
        font-size: 1.1rem;
    }

    .accordion-content p {
        font-size: 0.9rem;
        line-height: 1.2;
    }

    .Savax-limited-overview .text {
        font-size: 0.9rem;
        line-height: 1.2;
    }

    .Savax-limited-overview .sub-heading {
        margin-bottom: 4%;
    }

    .how-it-work .row.heading-container {
        flex-direction: column;
        padding: 7%;
        row-gap: 12px;
    }

    .how-it-work .text {
        font-size: 0.9rem;
        line-height: 1.4;
        color: white;
    }

    .how-it-work .col1,
    .how-it-work .col2 {
        width: 100%;
    }

    .investment-container {
        flex-direction: column-reverse;
    }

    .timeline {
        width: 100%;
        background-color: #f6f6f6;
        padding: 30px 0px;
        position: relative;
    }

    .step-title {
        font-size: 1.1rem;
        font-weight: bold;
        color: #495057;
        margin-bottom: 5px;
    }

    .timeline-line {
        position: absolute;
        left: 6%;
        top: 70px;
        bottom: 0;
        width: 2px;
        background-color: #dee2e6;
        z-index: 0;
    }

    .step-number {
        width: 41px;
        height: 41px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 18px;
        background-color: #e9ecef;
        color: #6c757d;
        font-weight: bold;
        transition: all 0.3s ease;
    }

    .custom-slider-container {
        width: 80%;
        margin: 0px auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .last-section .container {
        flex-direction: column;
        row-gap: 20px;
    }
    .last-section .card {
        width: 100%;
    }
    .last-section .card-title {
        color: #007bb4;
        font-size: 1.1rem;
    }
}