#about .accordion {
    cursor: pointer;
    margin-top: 20px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: 0.4s;
    background-color: #f6f7f9;
}

#about .active,
#about .accordion:hover {
    background-color: #f6f7f9;
}

#about .accordion:after {
    content: url('../img/icons/right.svg');
    /* color: #777; */
    /* font-weight: bold; */
    float: right;
    margin-right: 83%;
    margin-top: -8px;
}

#about .active:after {
    content: url('../img/icons/down.svg');
}

#about .panel {
    width: 100%;
    border: none;
    box-shadow: none;
    background-color: #f6f7f9;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

@media screen and (max-width: 991px) {
    #about .accordion:after {
        margin-right: 70%;
    }
}

@media screen and (max-width: 460px) {
    #about .accordion:after {
        margin-right: 55%;
    }
}