article.wp-block-eaclore-accordion {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    padding: 0 20px;
}

/* Style the buttons that are used to open and close the accordion panel */
article .accordion-btn h4 {
    margin: 0 !important;
    font-weight: normal;
    display: inline-block;
    line-height: 1.2;
}
article .accordion-btn {
    background: none;
    cursor: pointer;
    padding: 20px 0px 15px 0px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.2s;
    font-size: 28px;
    border-bottom: 2px solid #F5F4F1;
    border-radius: 0;
    color: #004E38;
    font-weight: normal;
}
article .accordion-btn:after {
    content: "+";
    margin-left: 5px;
    float: right;
    transition: .3s ease-in-out;
    color: #c7c7c7;
    border: 2px solid #c7c7c7;
    border-radius: 100px;
    width: 32px;
    height: 32px;
    text-align: center;
}
article .accordion-btn.active:after {
    /*-webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);*/
    transition: .3s ease-in-out;
    content: "-";
    color: #004E38;
    border-color: #004e38;
    width: 32px;
    height: 32px;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
article .accordion-btn.active, article .accordion-btn:hover, article .accordion-btn:focus {
    background: none;
    border-color: #004E38;
}
article .accordion-btn:hover:after, article .accordion-btn:focus:after {
    color: #004E38;
    border-color: #004e38;
}
article .accordion-btn {
    margin-bottom: 20px;
}

/* Style the accordion panel. Note: hidden by default */
article .accordion-body {
    padding: 0;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease-out;
    opacity: 0;
}
article .accordion-body.show {
    max-height: 3000px;
    overflow: hidden;
    transition: 0.4s ease-in;
    opacity: 1;
    /* border-bottom: 2px solid #F5F4F1; */
}



@media screen and (min-width: 0px) {
    article .accordion-btn h4 {
        font-size: 6vw;
    }
    article .accordion-btn {
        padding: 0px 0px 15px 0px;
    }
}
@media screen and (min-width: 600px) {
    article .accordion-btn h4 {
        font-size: 28px;
    }
    article .accordion-btn {
        padding: 20px 0px 15px 0px;
    }
}