.who-needs-animations{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    background: var(--d-dark);
    padding: 140px 100px;
    gap: 80px;
    position: relative;
}

.who-needs-animations>img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 1920 / 607;
    pointer-events: none;
}

.who-needs-animations .main-h2{
    color: var(--d-white);
    text-align: center;
    max-width: 1100px;
    position: relative;
}

.who-needs-animations .accordion-container{
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: start;
    position: relative;
    gap: 0;
}

.who-needs-animations .item {
    width: 100%;
    border-bottom: 1px solid rgba(20, 48, 113, 0.60);
}

.who-needs-animations .open-answer-button {
    background: #FFFFFF26;
    border: none;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.who-needs-animations .open-answer-button {
    background: var(--d-dark-40);
}

.who-needs-animations .open-answer-button path {
    stroke: var(--n-white);
}

.who-needs-animations .accordion-header.active .open-answer-button {
    background: var(--bright-blue);
    transform: rotate(45deg);
}

.who-needs-animations .accordion-header.active .open-answer-button path {
    stroke: var(--n-white);
}

.who-needs-animations .accordion-content {
    display: none;
    overflow: hidden;
}

.who-needs-animations .accordion-content a{
    margin-top: 24px;
}

@media (hover: hover){
    .who-needs-animations .accordion-header:not(.active):hover .open-answer-button {
        background: var(--d-dark-accent);
    }
}

.who-needs-animations .accordion-header {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    padding: 20px 0;
    color: var(--d-white);
    gap: 24px;
}

.who-needs-animations .accordion-header.active{
    padding-bottom: 8px;
}

.who-needs-animations .accordion-header.active + .accordion-content {
    display: block;
    padding-bottom: 20px;
    padding-inline-end: 64px;
}

.who-needs-animations .item:first-child .accordion-header{
    padding-top: 0 !important;
}

.who-needs-animations .subtitle-regular{
    text-decoration: none;
    color: var(--d-grey);
}

@media (max-width: 1919px) {
    .who-needs-animations{
        padding: 100px;
    }

    .who-needs-animations .main-h2, 
    .who-needs-animations .accordion-container{
        max-width: 1000px;
    }

    .who-needs-animations>img{
        aspect-ratio: 288 / 91;
    }
}

@media (max-width: 1439px) {
    .who-needs-animations{
        padding: 80px 60px;
        gap: 60px;
    }

    .who-needs-animations .main-h2, 
    .who-needs-animations .accordion-container{
        max-width: 800px;
    }

    .who-needs-animations>img{
        aspect-ratio: 256 / 81;
    }
}

@media (max-width: 1079px) {
    .who-needs-animations{
        padding: 80px 40px;
    }

    .who-needs-animations .main-h2, 
    .who-needs-animations .accordion-container{
        max-width: unset;
    }

    .who-needs-animations .open-answer-button {
        width: 32px;
        height: 32px;
    }

    .who-needs-animations .accordion-header {
        padding: 16px 0;
    }

    .who-needs-animations .accordion-header.active + .accordion-content {
        padding-inline-end: 54px;
    }
}

@media (max-width: 576px) {
    .who-needs-animations{
        padding: 60px 16px;
    }

    .who-needs-animations .accordion-header.active + .accordion-content {
        padding-bottom: 16px;
        padding-inline-end: 40px;
    }

    .who-needs-animations>img{
        width: 768px;
        left: 50%;
        transform: translateX(-50%);
    }
}