#faqContainer{
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}
#faqContainer h2{
    text-align: center;
    margin-top: 0;
    margin-bottom: 40px;
    font-family: Neuton;
    font-weight: normal;
}
.faq{
    position: relative;
    margin-bottom: 20px;
    background-color: white;
    border-radius: 10px;
    padding: 10px 35px;
    /* padding-bottom: 0 !important; */
    text-align: left;
    cursor: pointer;
    box-shadow: 0 0 12px 0px #d7d1bf;
}
/* .faq.open{padding-bottom: 10px !important;} */
.faq.open p{
    max-height: 60px;
}

.faq button{
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 34px;
}
.faq h3{
    margin-top: 20px;
    font-weight: normal;
}
    .faq p{
    color: #313131;
    margin: 0;
    margin-left: 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.5s ease;
}
.onOpen{display: none;}
.open .onOpen{display: block;}
.open .onClose{display: none;}

@media (max-width: 600px) {
    .faq{
        padding: 10px 20px;
    }
    .faq.open p{
        max-height: 100px;
    }
    .faq button{
        right: 10px;
        top: 10px;
    }
    #faqContainer h2{font-size: 24px;}
    .faq h3 {
        font-size: 16px;
        padding-right: 25px;
        margin-top: 5px;
    }
    .faq p {
        font-size: 14px;
        padding-right: 25px;
    }

}