.attcenter{
    text-align:center;
}
.accordion-004 {
    max-width:80%;
    margin:0 auto;
    margin-bottom: 7px;
    border: 2px solid #d60505;;
    border-radius: 5px;
}


.accordion-004 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    color: #d60505;
    font-weight: 600;
    cursor: pointer;
}
.accordion-004 summary::-webkit-details-marker {
    display: none;
}
summary:hover{text-decoration:underline;}

.accordion-004 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #d60505b3;
    border-right: 3px solid #d60505b3;
    content: '';
    transition: transform .3s;
}

.accordion-004[open] summary::after {
    transform: rotate(225deg);
}

.accordion-004 p {
    text-align:left;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em 1.5em;
    color: #0f0f0f;
    transition: transform .5s, opacity .5s;
}

.accordion-004[open] p {
    transform: none;
    opacity: 1;
}
.stg{font-weight:bold;}

@media screen and (max-width: 640px) {
    .accordion-004 { max-width:100%;}
    .accordion-004 summary { width:100%; text-align:center; padding: .8em;}
    .accordion-004 summary::after {display:none !important;}
    .accordion-004 p {  padding: .8em;}
}
