.accordion-button {
    background-color: #fff !important;
    transition: all 0.3s ease;
}

.accordion-button:hover {
    /* background-color: #0e4358 !important; */
        background-color: #e26a67 !important;

    color: #fff !important;
}

.accordion-button:not(.collapsed) {
    color: #fff !important;
    /* background-color: #0e4358 !important; */
        background-color: #e26a67 !important;

}

.accordion-button:focus {
    box-shadow: none !important;
}

@media (max-width: 992px) {
    .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.accordion-item {
    animation: fadeIn 0.5s ease-in-out;
}

.accordion-button {
    animation: slideIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}