.contact_faqs {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 140px auto;
    width: calc(100% - 80px);
    padding: 120px 0 140px;
    box-sizing: border-box;
    background-color: var(--grey);
    border-radius: 20px;
}

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

.faq_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.faq_explainer {
    width: 40%;
    position: sticky;
    top: 160px;
}

.faq_explainer h2 {
    text-align: left;
}

.faqs_right {
    width: 50%;
}

.faq_opening_paragraph {
    margin: 30px auto 0px;
}

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

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

.faq {
    padding: 5px 0;
    border-bottom: solid 2px rgba(0,0,0,0.1);
    z-index: 5;
    position: relative;
}

.faq:last-of-type {
    border-bottom: solid 2px rgba(0,0,0,0.1);
}

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

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

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

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

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

.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;
    box-sizing: border-box;
    margin-top: 36px;
}

.another_question_box h4 {
    margin: 0 0 10px;
}

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

@media (max-width: 1250px) {
    .contact_faqs {
        width: calc(100% - 50px);
    }

    .faq_explainer {
        width: calc(50% - 50px);
    }
}

@media (max-width: 1150px) {
    .faq_wrapper {
        flex-direction: column;
    }

    .faq_explainer h2 {
        text-align: center;
    }

    .faq_explainer {
        width: 70%;
        position: relative;
        top: unset;
        margin: 0 auto;
        margin-bottom: 80px;
        text-align: center;
    }

    .faq_explainer .buttons_container {
        margin: 0 auto;
    }

    .faqs_right {
        width: 70%;
        margin: 0 auto;
    }
}

@media (max-width: 950px) {
    .faq_explainer,
    .faqs_right {
        width: 85%;
    }
}

@media (max-width: 800px) {
    .contact_faqs {
        width: calc(100% - 40px);
        margin: 80px auto;
        padding: 60px 0 80px;
    }
}

@media (max-width: 750px) {
    .faq_explainer,
    .faqs_right {
        width: 100%;
    }
}

@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;
    }
}

@media (max-width: 500px) {
    .faq_explainer .buttons_container,
    .faq_explainer .buttons_container .button {
        width: 100%;
        margin-right: 0;
    }

    .faq_explainer .buttons_container .button_2 {
        margin-top: 20px;
    }
}