.contact_faqs {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 80px auto 96px;
}

.contact_faqs h2 {
    text-align: center;
    margin: 0 auto 20px;
}

.FAQs {
    padding: 80px 0 96px;
}

.FAQs h2 {
    text-align: center;
    margin: -10px auto 0;
}

.FAQs .subheading {
    margin: 0 auto 15px;
}

.faq_opening_paragraph {
    margin: 30px auto 50px;
    width: 500px;
    text-align: center;
}

.category_heading {
    margin: 80px auto 30px;
    text-align: center;
}

.category_heading:first-of-type {
    margin: 30px auto;
}

.faq {
    padding: 5x 0;
    border-top: solid 2px var(--border-grey);
    z-index: 5;
    position: relative;
}

.faq:last-of-type {
    border-bottom: solid 2px var(--border-grey);
}

.faq .question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}

.faq .question span {
    width: calc(100% - 50px);
}

.faq .question i {
    color: var(--gold);
    font-size: 20px;
    cursor: pointer;
    transition: 0.2s all ease-in-out;
}

.faq .answer {
    height: 0;
    opacity: 0;
    transition: 0.1s all ease-in-out;
}

.faq .answer .answer_content {
    margin: 0 0 20px;
    transition: 0.1s all ease-in-out;
}

.faq .answer .answer_content a {
    color: var(--gold);
    font-weight: 700;
}

.faq .active {
    height: max-content !important;
    opacity: 1 !important;
    transition: 0.2s all ease-in-out;
}

.faq .rotated {
    transform:rotate(180deg); 
    -webkit-transform:rotate(180deg); 
    -moz-transform:rotate(180deg); 
    -o-transform:rotate(180deg);
    transition: 0.2s all ease-in-out;
}

.faq Iframe {
    width: 100%;
    height: auto;
    border: none;
    outline: none;
}

.faq .video {
    position: relative;
    max-width: 100%;
    height: 0;
    display: block;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 0;
    margin: 0;
    z-index: 0;
}

.faq .expanded {
    height: auto;
    padding-bottom: 56.25%;
    margin: 25px 0;
}

.faq .video iframe,
.faq .video object,
.faq .video embed {
    position: absolute;
    top: 0;
    left: 0%;
    width: 100%;
    height: 100%;
}

.another_question_box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    background-color: var(--white);
    padding: 15px;
    box-sizing: border-box;
    margin-top: 96px;
    border: 2px solid var(--border-grey);
}

.grey_box {
    background-color: var(--light-grey);
}

.another_question_box h4 {
    margin: 0;
}

.another_question_box p {
    margin: 10px 0 25px;
}

@media (max-width: 650px) {
    .question {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .faq_opening_paragraph {
        width: calc(100% - 40px);
    }

    .grey_box .buttons_container {
        flex-direction: column;
        width: 100%;
    }

    .FAQs .buttons_container,
    .FAQs .button,
    .FAQs .button_2,
    .grey_box .buttons_container .button,
    .grey_box .buttons_container .button_2 {
        width: 100%;
    }

    .grey_box .buttons_container .button {
        margin-bottom: 15px;
    }
}