.faq-container {
    box-sizing: border-box;
}

.faq-container h2 {
    font-size: calc(1vw + 22px);
    font-family: "Poppins", Sans-serif;
    line-height: 1.4;
    text-align: center;
    font-weight: 700;
    margin: 0;
    margin-bottom: 7px;
    color: #1c2557;
}

body.darkblue-logo-bg .faq-container h2 {
    color: var(--darkBlue);
}

body.darkblue-logo-bg .faq-question img {
    filter: invert(13%) sepia(41%) saturate(2317%) hue-rotate(210deg) brightness(91%) contrast(95%);
}

.faq-container>p {
    font-family: "Poppins", Sans-serif;
    font-size: 17px;
    line-height: 1.66;
    font-weight: 300;
    margin: 0;
    text-align: center;
}

.faq-list {
    margin: 0;
    padding: 0;
    margin-top: 50px;
    margin-bottom: 80px;
}

.faq-list li {
    list-style: none;
    margin: 0;
    border-radius: 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.faq-list li:nth-child(odd)::after {
    content: "";
    position: absolute;
    width: calc(100% + 60px);
    height: 100%;
    border-radius: 35px;
    top: 0;
    pointer-events: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    cursor: pointer;
    width: 100%;
}

body.darkblue-logo-bg .faq-container p {
    color: var(--darkBlue);
}

.faq-question p {
    font-family: "Poppins", Sans-serif;
    font-size: 20px;
    line-height: 1.66;
    margin: 0;
    font-weight: 600;
}

.faq-question svg,
.faq-question img {
    width: 25px;
    height: 25px;
    object-fit:contain;
    transition: .25s;
}
.faq-question svg #vector-minus{
    opacity: 0;
}
.faq-question svg path{
    transition: .25s;
}
.open .faq-question svg #vector-plus{
    opacity: 0;
}
.open .faq-question svg #vector-minus{
    opacity: 1;
}
.open .faq-question svg{
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: .5s linear;
}

.open .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    font-size: 16px;
    font-weight: 300;
    font-family: "Poppins", Sans-serif;
    margin-top: 10px;
    margin-bottom: 40px;
    line-height: 1.66;
    width: 85%;
}

.faq-answer p strong {
    font-weight: 500;
}

@media (max-width: 950px) {
    .faq-container {
        box-sizing: border-box;
        padding: 0 20px;
    }

    .faq-container h2 {
        font-size: calc(16px + 1vw);
    }

    .faq-list li:nth-child(odd)::after {
        width: calc(100% + 30px);
    }

    .faq-container>p {
        font-size: calc(11px + .5vw);
    }

    .faq-question {
        padding: 15px;
        box-sizing: border-box;
    }

    .faq-question p {
        font-size: calc(10px + .5vw);
    }

    .faq-answer {
        padding: 0px 15px;
        box-sizing: border-box;
    }

    .faq-answer p {
        font-size: calc(10px + .5vw);
    }
}