
.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: 78%;
}

.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.4vw + 0.1rem);
    text-transform: uppercase;
    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;
}
@media screen and (max-width:900px) {
    .accordion {
        height:auto;
    }

    .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;
    }

}