.faqs{
    margin-top: 10px;
}

.faq{
    max-width: 700px;
    margin: min(20px, 3vw);
    background: rgb(80, 80, 80);
    box-shadow: 0px 0px 10px rgb(0, 0, 0, 0.3);
    border-radius: 10px;

    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.faq p{
    font-size: 32px;
    font-weight: 500;
}

.question{
    padding: min(20px, 3vw);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.question p{
    font-size: min(24px, 4vw);
}

.answer{
    max-height: 0;
    overflow: hidden;
    background-color: rgb(97, 97, 97);
    border-radius: 0px 0px 10px 10px;
}

.answer p{
    font-size: min(16px, 3.2vw);
    line-height: min(24px, 4.5vw);
    text-align: left;
    padding: min(16px, 2.4vw) min(20px, 3vw) min(16px, 2.4vw) min(20px, 3vw);
    margin-bottom: max(-20px, -3vw);
}

.answer p:last-child{
    margin-bottom: 0px;
}

.faq.active .answer{
  max-height: 300px;
}

.faq i{
    color: white;
    margin-left: 5px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq.active i{
    transform: rotate(180deg);
}

@media screen and (max-width: 600px) {
    footer{
        position: fixed;
        bottom: 0;
    }
}