section:nth-of-type(2) {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.accordion {
    position: relative;
    background-color: #f2f2f2;
    border: none;
    outline: none;
    border-top: 1px solid #0F0F0F;
    cursor: pointer;
    padding: 20px;
    padding-right: 60px;
    transition: 0.4s;
    color: #0F0F0F;
    font-family: "sole_text", Georgia, Times, "Times New Roman", serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-align: left;
    width: 100%;
    max-width: 786px;
}

.accordion:last-of-type {
    padding-right: 160px;
}

.active,
.accordion:hover {
    color: #0F0F0F;
}

.accordion:after {
    content: url(../img/cross_icon.svg);
    position: absolute;
    top: 20px;
    right: 0;
    transform: rotate(45deg);
    transform-origin: 50% 50%;
    transition: transform 0.3s ease-in-out;
}

.active:after {
    transform: rotate(90deg);
}


.panel {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    background-color: #f2f2f2;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.panel p {
    margin: auto;
    color: #0F0F0F;
    font-family: "SoleSans", Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    padding: 10px 20px;
}

.panel p:first-of-type {
    padding-top: 20px;
}

.panel p:last-of-type {
    padding-bottom: 20px;
}

.panel .chart_box {
    padding-bottom: 50px;
    padding-left: 15px;
    padding-right: 15px;
}

@media only screen and (max-width: 820px) {
    .accordion {
        padding: 20px;
    }
}

@media only screen and (max-width: 480px) {
    .accordion {
        max-width: 100%;
        font-size: 24px;
        padding: 18px;
    }

    .accordion:last-of-type {
        padding-right: 18px;
    }

    .panel p {
        font-size: 18px;
    }

    .chart_double_item:last-of-type {
        margin-top: 50px;
    }
}