/*************************** Contact Methods ********************************/
.contact_methods {
    margin: 100px auto;
}

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

.contact_methods h2 {
    text-align: center;
    margin: 0 0 32px 0;
}

.methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

.method {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: calc((100% - 92px) / 3);
    background-color: var(--white);
    box-shadow: 0px 3px 19px #0000000D;
    border-radius: 15px;
    padding: 25px;
    box-sizing: border-box;
}

.method:first-of-type {
    margin-right: 46px;
}

.method h3,
.FAQs .question {
    margin: 0;
    font-weight: 400;
    font-size: 37px;
}

.method p {
    margin-bottom: 0;
}

.method a {
    color: var(--hour7-light-blue);
    font-weight: 700;
}

.method_icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 15px;
    font-size: 16px;
    border-radius: 5px;
    box-shadow: 0px 3px 19px #0000000D;
    background-color: var(--hour7-gold);
    color: var(--hour7-blue);
    cursor: pointer;
    overflow: hidden;
}

.contact_social {
    display: flex;
    flex-wrap: wrap;
}

.contact_social a {
    margin-bottom: 0;
    color: var(--hour7-light-blue);
    margin-right: 15px;
    margin-top: 20px;
    font-weight: unset;
    font-size: 24px;
}

.contact_social a:last-of-type {
    margin-right: 0;
}

#methods_jump {
    position: absolute;
    margin-top: -142px; 
}

.FAQs {
    background-color: var(--white);
    padding: 100px 0;
}

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

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

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

.faq {
    padding: 25px 0 20px;
    border-top: solid 2px var(--hour7-grey);
}

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

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

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

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

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

.faq .active {
    height: max-content !important;
    margin: 25px 0 10px !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;
}

.another_question_box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    background-color: var(--light-grey);
    padding: 25px;
    box-sizing: border-box;
    border-radius: 15px;
    margin-top: 50px;
    box-shadow: 0px 3px 19px #0000000D;
}

.another_question_box h3 {
    margin-top: -5px;
    margin-bottom: 0;
}

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

@media (max-width: 1200px) {
    .method {
        width: calc((100% - 46px) / 2);
        margin-right: 0;
    }

    /* .method:last-of-type {
        margin: 46px auto 0;
    } */

    .contact_methods h2 {
        text-align: center;
    }

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

@media (max-width: 990px) {
    #methods_jump {
        margin-top: -132px; 
    }

    .faq_opening_paragraph {
        width: 60%;
    }
}
    
@media (max-width: 750px) {
    .methods {
        flex-direction: column;
    }

    .method {
        width: 100%;
        margin-bottom: 20px;
        margin-right: 0;
    }

    .method:last-of-type {
        margin: 0;
    }  
}

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