.large_opening_title {
    font-size: 100px;
    text-align: center;
    margin: 120px auto 50px;
    width: 850px;
}

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

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

.FAQs {
    padding: 0 0 155px;
    position: relative;
}

.FAQs h2 {
    text-align: center;
    margin: -10px auto 20px;
    font-size: 48px;
}

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

.faq_opening_paragraph {
    margin: 0 auto 80px;
    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 rgba(242, 244, 243, 0.25);
    z-index: 5;
    position: relative;
}

.faq:last-of-type {
    border-bottom: solid 2px rgba(242, 244, 243, 0.25);
}

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

.faq .question span {
    width: calc(100% - 50px);
    font-size: 24px;
    color: var(--beaver);
    text-transform: uppercase;
}

.faq .question i {
    color: var(--beaver);
    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 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;
    align-items: center;
    text-align: center;
    background-color: var(--trans-white);
    border: 2px solid var(--white);
    padding: 40px;
    box-sizing: border-box;
    margin-top: 80px;
    border-radius: 10px;
}

.another_question_box h4 {
    margin: 0;
    text-transform: uppercase;
}

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

.rotated_background_logo {
    position: absolute;
    margin-left: 0;
    top: 0;
    right: 0;
    align-items: flex-end;
    width: 150px;
    box-sizing: border-box;
    opacity: 0.1;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1150px) {
    .rotated_background_logo {
        display: none;
    }
}

@media (max-width: 910px) {
    .large_opening_title {
        font-size: 60px;
        width: 80%;
    }
}

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

@media (max-width: 600px) {
    .large_opening_title {
        font-size: 48px;
        width: 100%;
        margin: 80px auto 30px;
    }

    .FAQs {
        padding: 0 0 100px;
    }

    .FAQs h2 {
        font-size: 36px;
    }

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

    .another_question_box {
        padding: 20px;
    }
}

@media (max-width: 550px) {
    .another_question_box .buttons_container {
        display: block;
    }

    .another_question_box .button,
    .another_question_box .button_2 {
        width: 100%;
        margin-left: 0;
    }

    .another_question_box .button_2 {
        margin-top: 20px;
    }
}