body {
    background: #c7c1b1bd !important;
}

a {
    text-decoration: none !important;
}

.li_title {
    font-weight: bold;
    color: #42321d;
}

.accordion_img {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
}

.accordion-002 {
    max-width: 100%;
    margin-bottom: 7px;
    border: 2px solid #252525;
    border-radius: 5px;
}

.accordion-002 summary {
    display: flex;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2028%2028%22%3E%0A%20%20%20%20%3Ccircle%20cx%3D%2214%22%20cy%3D%2214%22%20r%3D%2214%22%20style%3D%22fill%3A%23454545%3B%22%2F%3E%0A%3C%2Fsvg%3E');
    background-position: right calc(2em - 7px) center;
    background-size: 24px;
    background-repeat: no-repeat;
    color: #252525;
    font-weight: 600;
    cursor: pointer;
}

.accordion-002 summary::-webkit-details-marker {
    display: none;
}

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

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

.accordion-002 .accordion_content {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 2em;
    color: #333333;
    transition: transform .5s, opacity .5s;
}

.accordion-002[open] .accordion_content {
    transform: none;
    opacity: 1;
}

.blog_top {
    top: 5px;
    position: sticky;
}



