.accordion {
    background-color: white;
    color: rgba(0,0,0,0.8);
    cursor:pointer;
    font-size: 20px;
    width: 100%;
    padding:10px 10px;
    transition: 0.4s;
    display: flex; align-content;
    justify-content: space-between;
    align-items: center;
    font-weight:bold;
}

.accordion i {
    font-size: 20px;
}
.active,
.accordion {
    background-color: lightblue;
}
.panel {
    padding: 0 18px;
    background-color: white;
    display:none;
    overflow: hidden;
    background-color:lightblue
    padding: 0 2rem 2.5rem 2rem;
}
.panel p {
    color: rgba(0,0,0,0.7);
    font-size: 14px;
    line-height: 18px;
}
.faq {
    border: 1px sold rgba(0,0,0,0.1);
    margin: 10px 0;
}
.faq.active {
    border: none;
}
