.benefits_title {
    margin-bottom: 40px;
}

.accordion {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;


}

@media (max-width: 991px) {
    .accordion {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }
}

.accordion-content {
    border-radius: 10px;
}

#accordion-button-1 {
    background: #0D7DFD;
}

#accordion-button-2 {
    background: #ffb12a;
}

#accordion-button-3 {
    background: #8034AE;
}

#accordion-button-4 {
    background: #FF6AAB;
}

#accordion-button-5 {
    background: #369C8C;
}

#accordion-button-6 {
    background: #0D7DFD;
}

#accordion-button-7 {
    background: #ffb12a;
}

#accordion-button-8 {
    background: #FF6AAB;
}

.accordion-item:nth-child(1) .accordion-content {
    background-color: #BFDCFE;
}

.accordion-item:nth-child(2) .accordion-content {
    background-color: rgba(255, 177, 42, 0.60);
}

.accordion-item:nth-child(3) .accordion-content {
    background: rgba(168, 99, 210, 0.60);
}

.accordion-item:nth-child(4) .accordion-content {
    background: rgba(252, 132, 185, 0.60);
}

.accordion-item:nth-child(5) .accordion-content {
    background: rgba(62, 164, 152, 0.60);
}

.accordion-item:nth-child(6) .accordion-content {
    background-color: #BFDCFE;
}

.accordion-item:nth-child(7) .accordion-content {
    background-color: rgba(255, 177, 42, 0.60);
}

.accordion-item:nth-child(8) .accordion-content {
    background: rgba(252, 132, 185, 0.60);
}

.accordion button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    width: 100%;
    padding: 30px;
    text-transform: uppercase;
    border: none;
    outline: none;
    color: #FFF;
    font-size: 18px;
    line-height: 120%;
    border-radius: 10px;
    font-family: "Roboto", "sans-serif";
    font-weight: 500;
}

.accordion__img {
    width: 30px;
    height: 18px;
}

.accordion__img img {
    width: 100%;
    height: 100%;
}

.accordion .accordion-content {
    opacity: 0;
    overflow: hidden;
    max-height: 0;
    transition: all 0.3s ease;
    will-change: opacity, max-height;
}

.accordion .accordion-content {
    opacity: 0;
    overflow: hidden;
    will-change: opacity, max-height;
}

.accordion button[aria-expanded="true"]+.accordion-content {
    opacity: 1;
    max-height: none;
    transition: all 0.3s ease;
}

.accordion button:hover,
.accordion button:focus {
    cursor: pointer;
}

.accordion button:hover::after,
.accordion button:focus::after {
    cursor: pointer;
}



.accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 0;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
}

.accordion button .icon::before {
    display: block;
    position: absolute;
    content: "";
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
}

.accordion button .icon::after {
    display: block;
    position: absolute;
    content: "";
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
}


.accordion button[aria-expanded="true"] .icon::after {
    width: 0;
}

.accordion button[aria-expanded="true"]+.accordion-content {
    opacity: 1;
    max-height: 0px;
    transition: all 0.3s linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content p {
    padding: 27px 30px;
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
}

.accordion-content img {
    width: auto;
    margin: 0 auto;
    display: block;
}