.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 90%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    margin-left: 30px;
    font-family: 'Montserrat', sans-serif;
}

.active, .accordion:hover {
    background-color: #EEBA24;
}

.accordion:after {
      color: #777;
      font-weight: bold;
      float: right;
      margin-left: 5px;
}

.active:after {
    content: "\2212";
}

.panel {
    padding: 0 0;
    margin-left: 15vw;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;

}
.panel li{
    padding-bottom: 20px;
    transition: all 0.2;
}
@media only screen and (max-width: 1000px) {
    .accordion{
      font-size: 30px;
      padding: 30px;
    }
}
